summaryrefslogtreecommitdiffstats
path: root/funcweb/setup.py
diff options
context:
space:
mode:
authorAdrian Likins <alikins@redhat.com>2008-08-20 13:36:47 -0400
committerAdrian Likins <alikins@redhat.com>2008-08-20 13:36:47 -0400
commit82ed2583f2f9b2fe5ca89824340e12e8dbdef8ef (patch)
tree21b503dcafc7871bae5f1ca69c3d28d60086ee14 /funcweb/setup.py
parent4bd91c631f1d81daa416889b0521f95841a1a83a (diff)
parenta07ef03e52427fa26f8990031705a86fdd7c9291 (diff)
Merge branch 'master' of ssh://alikins@git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'funcweb/setup.py')
-rw-r--r--funcweb/setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/funcweb/setup.py b/funcweb/setup.py
index e4e6cf7..fc12ca2 100644
--- a/funcweb/setup.py
+++ b/funcweb/setup.py
@@ -23,6 +23,8 @@ initpath = "/etc/init.d"
#the log path
logpath = "/var/log/funcweb"
rotpath = "/etc/logrotate.d"
+#the pam path
+pampath = "/etc/pam.d/"
#the setup part
setup(
@@ -93,6 +95,7 @@ setup(
(self_etcpath,['etc/prod.cfg']),
(initpath,['init-scripts/funcwebd']),
(logpath,[]),
- (rotpath,['etc/funcweb_rotate'])
+ (rotpath,['etc/funcweb_rotate']),
+ (pampath,['etc/pam.d/funcweb'])
],
)