summaryrefslogtreecommitdiffstats
path: root/overlord
diff options
context:
space:
mode:
authorSeth Vidal <skvidal@fedoraproject.org>2007-09-26 23:43:11 -0400
committerSeth Vidal <skvidal@fedoraproject.org>2007-09-26 23:43:11 -0400
commitdb29f4bf424b7b804617cb042ad796f2812c0ca0 (patch)
treed88e0961ed1a63d7705d65d44cf7541168bd4e1c /overlord
parent035c6b129d43d90af6202542b931de38e6a7e86b (diff)
downloadthird_party-func-db29f4bf424b7b804617cb042ad796f2812c0ca0.tar.gz
third_party-func-db29f4bf424b7b804617cb042ad796f2812c0ca0.tar.xz
third_party-func-db29f4bf424b7b804617cb042ad796f2812c0ca0.zip
cert's are stored as .cert not as .pem so we weren't finding any minions
Diffstat (limited to 'overlord')
-rwxr-xr-xoverlord/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/overlord/client.py b/overlord/client.py
index cf7a375..0264cad 100755
--- a/overlord/client.py
+++ b/overlord/client.py
@@ -92,7 +92,7 @@ class Client():
all_certs = []
seperate_gloobs = spec.split(";")
for each_gloob in seperate_gloobs:
- actual_gloob = "%s/%s.pem" % (CERT_PATH, each_gloob)
+ actual_gloob = "%s/%s.cert" % (CERT_PATH, each_gloob)
certs = glob.glob(actual_gloob)
for cert in certs:
all_certs.append(cert)