blob: 3b212b4e4ff0a4f70501d2dc334820e88d4351a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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)
|