summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--func.spec1
-rw-r--r--setup.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/func.spec b/func.spec
index cff9bb0..855109b 100644
--- a/func.spec
+++ b/func.spec
@@ -58,7 +58,6 @@ rm -fr $RPM_BUILD_ROOT
/etc/init.d/funcd
%dir %{_sysconfdir}/%{name}
%dir %{_sysconfdir}/%{name}/minion-acl.d/
-%dir %{_sysconfdir}/pki/%{name}/
%dir /etc/func/modules/
%config(noreplace) /etc/func/minion.conf
%config(noreplace) /etc/logrotate.d/func_rotate
diff --git a/setup.py b/setup.py
index a36f348..1200c29 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,6 @@ if __name__ == "__main__":
initpath = "/etc/init.d/"
logpath = "/var/log/%s/" % NAME
varpath = "/var/lib/%s/" % NAME
- pkipath = "/etc/pki/%s" % NAME
rotpath = "/etc/logrotate.d"
aclpath = "%s/minion-acl.d" % etcpath
setup(
@@ -59,7 +58,6 @@ if __name__ == "__main__":
(rotpath, ['etc/func_rotate']),
(logpath, []),
(etcmodpath, []),
- (pkipath, []),
(varpath, []),
(aclpath, [])
],