Skip to content
Snippets Groups Projects
Unverified Commit b28907a7 authored by Max Adamo's avatar Max Adamo
Browse files

fix typo

parent fbc82c88
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment