From 122714e5589843c5f283ad935b20345576d24ca6 Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Mon, 24 Sep 2007 15:44:26 -0400 Subject: add certmaster startup and execute script move certmaster config file into etc path move certmaster.py into func path --- scripts/certmaster | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/certmaster (limited to 'scripts') diff --git a/scripts/certmaster b/scripts/certmaster new file mode 100755 index 0000000..3b212b4 --- /dev/null +++ b/scripts/certmaster @@ -0,0 +1,12 @@ +#!/usr/bin/python + +import sys +import distutils.sysconfig + +sys.path.append("%s/func" % distutils.sysconfig.get_python_lib()) + +import certmaster + +cm = certmaster.CertMaster('/etc/func/certmaster.conf') +server = certmaster.serve(cm) + -- cgit