From e5eaba1bc8317a677a3f55e8e11461ce0efe31e5 Mon Sep 17 00:00:00 2001 From: Disassembler Date: Wed, 7 Nov 2018 21:56:53 +0100 Subject: [PATCH] Fix cert method name --- usr/lib/python3.6/vmmgr/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/python3.6/vmmgr/crypto.py b/usr/lib/python3.6/vmmgr/crypto.py index 057332d..337a099 100644 --- a/usr/lib/python3.6/vmmgr/crypto.py +++ b/usr/lib/python3.6/vmmgr/crypto.py @@ -50,7 +50,7 @@ def get_cert_info(): 'expires': '{} UTC'.format(cert.not_valid_after), 'method': 'manual'} if os.access(ACME_CRON, os.X_OK): - data['method'] = 'letsencrypt' + data['method'] = 'automatic' # Naive method of inferring if the cert is selfsigned # Good enough as reputable CAs will never have the same subject and issuer CN # and the 'method' field is used just to populate a GUI element and not for any real cryptography