diff options
| author | Robin Norwood <rnorwood@redhat.com> | 2007-09-24 17:43:05 -0400 |
|---|---|---|
| committer | Robin Norwood <rnorwood@redhat.com> | 2007-09-24 17:43:05 -0400 |
| commit | 3a78963db6e4747be51935bdd1928e220945b49b (patch) | |
| tree | 72319cc571b8c783e836ef5b9aa7f852d858decc /scripts | |
| parent | fbb252b32b8d966bde90aa8c6f9fb544b100149b (diff) | |
| parent | 0067f7ff6189fdd46f49e45ed2099511eb4de004 (diff) | |
Merge branch 'master' of git://git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/certmaster | 12 |
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) + |
