Fixed error in command line options spelling
This commit is contained in:
parent
f6e6b20587
commit
c690e7d649
1 changed files with 2 additions and 2 deletions
|
@ -134,8 +134,8 @@ def acme_request(config, domain_name, acme_test='DNS-01', dryrun=False, domains_
|
||||||
if acme_test == 'DNS-01':
|
if acme_test == 'DNS-01':
|
||||||
args += " --manual certonly "
|
args += " --manual certonly "
|
||||||
args += "--preferred-challenges dns-01 "
|
args += "--preferred-challenges dns-01 "
|
||||||
args += "--manuale-auth-hook {} ".format(config['certbot']['auth_hook'])
|
args += "--manual-auth-hook {} ".format(config['certbot']['auth_hook'])
|
||||||
args += "--manuale-cleanup-hook {} ".format(config['certbot']['cleanup_hook'])
|
args += "--manual-cleanup-hook {} ".format(config['certbot']['cleanup_hook'])
|
||||||
args += "-d {},*.{}".format(domain_name, domain_name)
|
args += "-d {},*.{}".format(domain_name, domain_name)
|
||||||
elif acme_test == 'HTTP-01':
|
elif acme_test == 'HTTP-01':
|
||||||
args += " --webroot certonly "
|
args += " --webroot certonly "
|
||||||
|
|
Loading…
Reference in a new issue