#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
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"
(rotpath, ['etc/certmaster_rotate']),
(logpath, []),
(certdir, []),
+ (certmaster_cert_dir, []),
+ (certmaster_cert_certs_dir, []),
+ (certmaster_cert_csrs_dir, []),
(etcpath, []),
(pkipath, []),
(aclpath, []),