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

Loading…
Cancel
Save