Move webroot definition further down

This commit is contained in:
Simon Spannagel 2020-02-07 19:00:42 +01:00
parent 23447ec217
commit b37af73500

View File

@ -25,12 +25,12 @@ certbot_certs: []
certbot_create_command: >-
{{ certbot_script }} certonly --{{ certbot_create_method }}
{{ '-w ' if certbot_create_method == 'webroot' else '' }}
{{ cert_item.webroot if certbot_create_method == 'webroot' else '' }}
{{ '--hsts' if certbot_hsts else '' }}
{{ '--test-cert' if certbot_testmode else '' }}
--noninteractive --agree-tos
--email {{ cert_item.email | default(certbot_admin_email) }}
{{ '--webroot-path ' if certbot_create_method == 'webroot' else '' }}
{{ cert_item.webroot if certbot_create_method == 'webroot' else '' }}
-d {{ cert_item.domains | join(',') }}
{{ '--pre-hook /etc/letsencrypt/renewal-hooks/pre/stop_services'
if certbot_create_standalone_stop_services