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 From 5024f7f62ff32345660fae783ac7a97d506fe1da Mon Sep 17 00:00:00 2001 From: Robin Norwood Date: Tue, 25 Sep 2007 10:33:03 -0400 Subject: Renamed server to minion and client to overlord --- scripts/funcd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/funcd b/scripts/funcd index 165dd68..2301acf 100755 --- a/scripts/funcd +++ b/scripts/funcd @@ -6,7 +6,7 @@ import distutils.sysconfig sys.path.append("%s/func" % distutils.sysconfig.get_python_lib()) -from server import server +from minion import server if __name__ == "__main__": server.main(sys.argv) -- cgit