acme/certificate: Fixed quoting for acme.sh commands

dehydrated
Felix Stupp 4 years ago
parent 98b7f4744e
commit 0e49941e1a
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -8,8 +8,8 @@
./acme.sh --issue
--home {{ acme_installation_directory | quote }}
--config-home {{ acme_configuration_directory | quote }}
--domain "{{ domain | quote }}"
--webroot "{{ nginx_validation_root_directory | quote }}"
--domain {{ domain | quote }}
--webroot {{ nginx_validation_root_directory | quote }}
--ecc
--ocsp-must-staple
args:
@ -24,10 +24,10 @@
./acme.sh --install-cert
--home {{ acme_installation_directory | quote }}
--config-home {{ acme_configuration_directory | quote }}
--domain "{{ domain | quote }}"
--key-file "{{ acme_key_location | quote }}"
--fullchain-file "{{ acme_certificate_location | quote }}"
--reloadcmd "{{ reload_command }}"
--domain {{ domain | quote }}
--key-file {{ acme_key_location | quote }}
--fullchain-file {{ acme_certificate_location | quote }}
--reloadcmd {{ reload_command | quote }}
args:
chdir: "{{ acme_installation_directory }}"
creates: "{{ acme_key_location }}"

Loading…
Cancel
Save