From 73e598e357c28782bb3d13cfd7b62c20dbab1d9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Tue, 10 Aug 2010 13:59:26 -0400 Subject: [PATCH] Force create_minion_keys function to use all lowercase hostnames --- certmaster/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/certmaster/utils.py b/certmaster/utils.py index 6f73ccc..6b79ce7 100644 --- 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) -- 2.39.2