summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-03-04 12:28:27 -0500
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-03-04 12:28:27 -0500
commit64aeb2f90fdb4d142af45e6a28d8854b416d8197 (patch)
tree0477c23cd96af9fbe2507e3e15679ffaf7ba32d6 /setup.py
parentcf6221ea3590120ab68f40a6d50a2456bae5e3cf (diff)
parentec7d7181700b0b394a1c22b508a57f76085fa916 (diff)
Merge branch 'devel' of ssh://git.fedoraproject.org/git/hosted/func into my-devel
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py13
1 files changed, 5 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index 12c66d1..a36f348 100644
--- a/setup.py
+++ b/setup.py
@@ -18,9 +18,8 @@ if __name__ == "__main__":
etcmodpath = "/etc/%s/modules" % NAME
initpath = "/etc/init.d/"
logpath = "/var/log/%s/" % NAME
- certdir = "/var/lib/certmaster/"
- pkidir = "/etc/pki/%s" % NAME
- libdir = "/var/lib/%s" % NAME
+ varpath = "/var/lib/%s/" % NAME
+ pkipath = "/etc/pki/%s" % NAME
rotpath = "/etc/logrotate.d"
aclpath = "%s/minion-acl.d" % etcpath
setup(
@@ -54,16 +53,14 @@ if __name__ == "__main__":
],
data_files = [(initpath, ["init-scripts/funcd"]),
(etcpath, ["etc/minion.conf"]),
- (etcmodpath, []),
(manpath, ["docs/func.1.gz"]),
(manpath, ["docs/func-inventory.1.gz"]),
(manpath, ["docs/funcd.1.gz"]),
(rotpath, ['etc/func_rotate']),
(logpath, []),
- (libdir, []),
- (certdir, []),
- (pkidir, []),
- (etcpath, []),
+ (etcmodpath, []),
+ (pkipath, []),
+ (varpath, []),
(aclpath, [])
],
description = SHORT_DESC,