summaryrefslogtreecommitdiffstats
path: root/func/commonconfig.py
diff options
context:
space:
mode:
authorSteve 'Ashcrow' Milner <stevem@gnulinux.net>2008-01-13 14:35:45 -0500
committerSteve 'Ashcrow' Milner <stevem@gnulinux.net>2008-01-13 14:35:45 -0500
commitb77fbdd90f46b3d1602aa43e99abec096d93888e (patch)
tree9d8ac00601e056ac79f5679b88cc19bb65293190 /func/commonconfig.py
parent63170952d465a8acf8355e7b346733e4f6ddcace (diff)
downloadthird_party-func-b77fbdd90f46b3d1602aa43e99abec096d93888e.tar.gz
third_party-func-b77fbdd90f46b3d1602aa43e99abec096d93888e.tar.xz
third_party-func-b77fbdd90f46b3d1602aa43e99abec096d93888e.zip
removed a lot of misplaced shebangs.
Diffstat (limited to 'func/commonconfig.py')
-rw-r--r--func/commonconfig.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/func/commonconfig.py b/func/commonconfig.py
index 5c3485f..9fd3356 100644
--- a/func/commonconfig.py
+++ b/func/commonconfig.py
@@ -1,5 +1,3 @@
-#!/usr/bin/python
-
from config import BaseConfig, BoolOption, IntOption, Option
class CMConfig(BaseConfig):
@@ -9,9 +7,9 @@ class CMConfig(BaseConfig):
csrroot = Option('/var/lib/func/certmaster/csrs')
autosign = BoolOption(False)
+
class FuncdConfig(BaseConfig):
log_level = Option('INFO')
certmaster = Option('certmaster')
cert_dir = Option('/etc/pki/func')
acl_dir = Option('/etc/func/minion-acl.d')
-