summaryrefslogtreecommitdiffstats
path: root/minion
diff options
context:
space:
mode:
authorSeth Vidal <skvidal@fedoraproject.org>2007-09-27 17:22:00 -0400
committerSeth Vidal <skvidal@fedoraproject.org>2007-09-27 17:22:00 -0400
commit55bf7929f943c4ba2987e47392a517ae1b47eb81 (patch)
tree62be9093923a7402a608f3ea91b665d112834e93 /minion
parent5d637b53c5853b35c308a284956c9f1dd637c43a (diff)
downloadthird_party-func-55bf7929f943c4ba2987e47392a517ae1b47eb81.tar.gz
third_party-func-55bf7929f943c4ba2987e47392a517ae1b47eb81.tar.xz
third_party-func-55bf7929f943c4ba2987e47392a517ae1b47eb81.zip
really nice if I'd stop dropping 'i' out of config_file
Diffstat (limited to 'minion')
-rwxr-xr-xminion/logger.py2
-rwxr-xr-xminion/server.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/minion/logger.py b/minion/logger.py
index 9e8b62d..169d508 100755
--- a/minion/logger.py
+++ b/minion/logger.py
@@ -35,7 +35,7 @@ class Logger(Singleton):
_no_handlers = True
def __init__(self, logfilepath ="/var/log/func/func.log"):
- config_fle = '/etc/func/minion.conf'
+ config_file = '/etc/func/minion.conf'
self.config = read_config(config_file, FuncdConfig)
self.loglevel = logging._levelNames[self.config.log_level]
self._setup_logging()
diff --git a/minion/server.py b/minion/server.py
index af4c4e0..f930cfa 100755
--- a/minion/server.py
+++ b/minion/server.py
@@ -49,7 +49,7 @@ class XmlRpcInterface(object):
Constructor.
"""
- config_fle = '/etc/func/minion.conf'
+ config_file = '/etc/func/minion.conf'
self.config = read_config(config_file, FuncdConfig)
self.logger = logger.Logger().logger
self.audit_logger = logger.AuditLogger()