From e22199a3c8d1cb9e54d8179ffd0e9ad4a34f8947 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Fri, 24 Oct 2008 13:34:45 -0400 Subject: add some test cases for per module configuation. This stuff doesnt really seem to work at this point, but pushing so other folks can take a look at it. It doesn't break anything else. --- func/commonconfig.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'func/commonconfig.py') diff --git a/func/commonconfig.py b/func/commonconfig.py index 9eaaa88..06d06a2 100644 --- a/func/commonconfig.py +++ b/func/commonconfig.py @@ -14,10 +14,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. """ -from certmaster.config import BaseConfig, BoolOption, Option +from certmaster.config import BaseConfig, BoolOption, Option, IntOption class FuncdConfig(BaseConfig): log_level = Option('INFO') acl_dir = Option('/etc/func/minion-acl.d') certmaster_overrides_acls = BoolOption(True) + + listen_addr = Option('') + listen_port = IntOption('51234') -- cgit