summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-02-29 12:01:18 -0500
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-02-29 12:01:18 -0500
commitdad9e9453b95f43e70d17ec5713cd9b095a6d16c (patch)
treeaadf18938446987182425d951a955da843e90c6d /func
parentf2e2df8491b9e9d71ed88855e2b043f76d22e119 (diff)
downloadfunc-dad9e9453b95f43e70d17ec5713cd9b095a6d16c.tar.gz
func-dad9e9453b95f43e70d17ec5713cd9b095a6d16c.tar.xz
func-dad9e9453b95f43e70d17ec5713cd9b095a6d16c.zip
using the wrong path to minion.conf, update
Diffstat (limited to 'func')
-rw-r--r--func/overlord/cmd_modules/check.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/func/overlord/cmd_modules/check.py b/func/overlord/cmd_modules/check.py
index cf1badb..ce84792 100644
--- a/func/overlord/cmd_modules/check.py
+++ b/func/overlord/cmd_modules/check.py
@@ -122,12 +122,12 @@ class CheckAction(client.command.Command):
print "* iptables may be running, ensure 51234 is unblocked"
def check_talk_to_certmaster(self):
- config_file = '/etc/func/minion.conf'
+ config_file = '/etc/certmaster/minion.conf'
config = read_config(config_file, FuncdConfig)
cert_dir = config.cert_dir
# FIXME: don't hardcode port
master_uri = "http://%s:51235/" % config.certmaster
- print "* this minion is configured in /etc/func/minion.conf to talk to host '%s' for certs, verify that is correct" % config.certmaster
+ print "* this minion is configured in /etc/certmaster/minion.conf to talk to host '%s' for certs, verify that is correct" % config.certmaster
# this will be a 501, unsupported GET, but we should be
# able to tell if we can make contact
connect_ok = True