From b28907a7d9b77d2cc37fd9666dc055f9d68f8509 Mon Sep 17 00:00:00 2001
From: Massimiliano Adamo <maxadamo@gmail.com>
Date: Fri, 17 Apr 2020 12:49:41 +0200
Subject: [PATCH] fix typo

---
 files/geant_acme.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/files/geant_acme.py b/files/geant_acme.py
index 13664f3..c0f2267 100755
--- a/files/geant_acme.py
+++ b/files/geant_acme.py
@@ -105,8 +105,9 @@ def run_certbot(cbot_domain, wild_card=None):
     if wild_card:
         domain_list = '*.{}'.format(domain_list)
 
-    cbot_cmd = '/usr/local/bin/certbot certonly -c /etc/letsencrypt/cli.ini' \
-               + ' --manual-auth-hook --non-interactive /root/bin/infoblox_hook.py' \
+    cbot_cmd = '/usr/local/bin/certbot certonly --non-interactive ' \
+               + ' -c /etc/letsencrypt/cli.ini' \
+               + ' --manual-auth-hook /root/bin/infoblox_hook.py' \
                + ' --cert-name {} -d {}'.format(cbot_domain[0], domain_list)
 
     print('running: {}'.format(cbot_cmd))
-- 
GitLab