summaryrefslogtreecommitdiffstats
path: root/func/certs.py
diff options
context:
space:
mode:
Diffstat (limited to 'func/certs.py')
-rw-r--r--func/certs.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/func/certs.py b/func/certs.py
index 413f9ce..4d6bf15 100644
--- a/func/certs.py
+++ b/func/certs.py
@@ -17,6 +17,7 @@
from OpenSSL import crypto
import socket
import os
+import utils
def_country = 'UN'
def_state = 'FC'
@@ -48,12 +49,7 @@ def make_csr(pkey, dest=None, cn=None):
if cn:
subj.CN = cn
else:
- fqdn = socket.getfqdn()
- host = socket.gethostname()
- if fqdn.find(host) != -1:
- subj.CN = fqdn
- else:
- subj.CN = host
+ subj.CN = utils.get_hostname()
subj.emailAddress = 'root@%s' % subj.CN
req.set_pubkey(pkey)