introduce certbot_create_extra_args

This commit is contained in:
Romain Porte 2020-05-07 09:46:42 +02:00 committed by Agathe Porte
parent eb4647ed9c
commit 3fcd4e0258

View File

@ -35,6 +35,7 @@ certbot_create_command: >-
--email {{ cert_item.email | default(certbot_admin_email) }}
{{ '--webroot-path ' if certbot_create_method == 'webroot' else '' }}
{{ cert_item.webroot | default(certbot_webroot) if certbot_create_method == 'webroot' else '' }}
{{ certbot_create_extra_args }}
-d {{ cert_item.domains | join(',') }}
{{ '--pre-hook /etc/letsencrypt/renewal-hooks/pre/stop_services'
if certbot_create_standalone_stop_services