projects
/
certmaster.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6ee54c
)
Force create_minion_keys function to use all lowercase hostnames
author
S.Çağlar Onur
<caglar@cs.princeton.edu>
Tue, 10 Aug 2010 17:59:26 +0000
(13:59 -0400)
committer
S.Çağlar Onur
<caglar@cs.princeton.edu>
Tue, 10 Aug 2010 17:59:26 +0000
(13:59 -0400)
certmaster/utils.py
patch
|
blob
|
history
diff --git
a/certmaster/utils.py
b/certmaster/utils.py
index
6f73ccc
..
6b79ce7
100644
(file)
--- a/
certmaster/utils.py
+++ b/
certmaster/utils.py
@@
-137,6
+137,9
@@
def create_minion_keys(hostname=None):
if hn is None:
raise codes.CMException("Could not determine a hostname other than localhost")
+ else:
+ # use lowercase letters for hostnames
+ hostname = hostname.lower()
key_file = '%s/%s.pem' % (cert_dir, hn)
csr_file = '%s/%s.csr' % (cert_dir, hn)