X-Git-Url: https://pwan.org/git/?p=certmaster.git;a=blobdiff_plain;f=setup.py;fp=setup.py;h=e47e1b0cdfbe79fd0ce0a6a66873bc85cab55814;hp=bd1cf5375d8b289d282ed5934c736e791ec5e152;hb=ece4c159e4fd726a70b1da25821493fb8a90c8b3;hpb=e92972a02d0e506cb7780694642137201421a74a diff --git a/setup.py b/setup.py index bd1cf53..e47e1b0 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ if __name__ == "__main__": initpath = "/etc/init.d/" logpath = "/var/log/%s/" % NAME certdir = "/var/lib/%s/" % NAME + trigpath = "/var/lib/%s/triggers/"% NAME pkipath = "/etc/pki/%s" % NAME rotpath = "/etc/logrotate.d" aclpath = "%s/minion-acl.d" % etcpath @@ -48,7 +49,13 @@ if __name__ == "__main__": (certdir, []), (etcpath, []), (pkipath, []), - (aclpath, []) + (aclpath, []), + ("%s/sign/pre/" % trigpath, []), + ("%s/sign/post/" % trigpath, []), + ("%s/remove/pre/" % trigpath, []), + ("%s/remove/post/" % trigpath, []), + ("%s/request/pre/" % trigpath, []), + ("%s/request/post/" % trigpath, []), ], description = SHORT_DESC, long_description = LONG_DESC