summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRobin Norwood <rnorwood@redhat.com>2007-09-24 17:43:05 -0400
committerRobin Norwood <rnorwood@redhat.com>2007-09-24 17:43:05 -0400
commit3a78963db6e4747be51935bdd1928e220945b49b (patch)
tree72319cc571b8c783e836ef5b9aa7f852d858decc /scripts
parentfbb252b32b8d966bde90aa8c6f9fb544b100149b (diff)
parent0067f7ff6189fdd46f49e45ed2099511eb4de004 (diff)
Merge branch 'master' of git://git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/certmaster12
1 files changed, 12 insertions, 0 deletions
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)
+