From: Adrian Likins Date: Wed, 27 May 2009 20:18:24 +0000 (-0400) Subject: add certmaster cert dirs to the setup.py so the spec file sees them X-Git-Tag: v0.25~4 X-Git-Url: https://pwan.org/git/?p=certmaster.git;a=commitdiff_plain;h=3692fc7eab86f92aeb4868da6aa325ea991127bc;hp=dfd7e9695bbc7688729d4e75bc09fb4040a3aaae add certmaster cert dirs to the setup.py so the spec file sees them rev version to 0.25 --- diff --git a/setup.py b/setup.py index 2a1fcdf..de57040 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup #from setuptools import setup,find_packages NAME = "certmaster" -VERSION = "0.24" +VERSION = "0.25" SHORT_DESC = "%s remote configuration and management api" % NAME LONG_DESC = """ A small pluggable xml-rpc daemon used by %s to implement various web services hooks @@ -18,6 +18,9 @@ if __name__ == "__main__": initpath = "/etc/init.d/" logpath = "/var/log/%s/" % NAME certdir = "/var/lib/%s/" % NAME + certmaster_cert_dir = "/var/lib/%s/%s" % (NAME,NAME) + certmaster_cert_certs_dir = "/var/lib/%s/%s/certs" % (NAME, NAME) + certmaster_cert_csrs_dir = "/var/lib/%s/%s/csrs" % (NAME, NAME) trigpath = "/var/lib/%s/triggers/"% NAME pkipath = "/etc/pki/%s" % NAME rotpath = "/etc/logrotate.d" @@ -48,6 +51,9 @@ if __name__ == "__main__": (rotpath, ['etc/certmaster_rotate']), (logpath, []), (certdir, []), + (certmaster_cert_dir, []), + (certmaster_cert_certs_dir, []), + (certmaster_cert_csrs_dir, []), (etcpath, []), (pkipath, []), (aclpath, []),