Fixed error in command line options spelling

This commit is contained in:
jigen 2018-06-10 23:07:07 +02:00
parent f6e6b20587
commit c690e7d649

View file

@ -134,8 +134,8 @@ def acme_request(config, domain_name, acme_test='DNS-01', dryrun=False, domains_
if acme_test == 'DNS-01':
args += " --manual certonly "
args += "--preferred-challenges dns-01 "
args += "--manuale-auth-hook {} ".format(config['certbot']['auth_hook'])
args += "--manuale-cleanup-hook {} ".format(config['certbot']['cleanup_hook'])
args += "--manual-auth-hook {} ".format(config['certbot']['auth_hook'])
args += "--manual-cleanup-hook {} ".format(config['certbot']['cleanup_hook'])
args += "-d {},*.{}".format(domain_name, domain_name)
elif acme_test == 'HTTP-01':
args += " --webroot certonly "