we ignore errors for certificate generation to allow for repeat runs
This commit is contained in:
parent
8b4fbb9a4b
commit
c47775c2a9
|
@ -14,5 +14,6 @@
|
||||||
shell: cd /opt/acme.sh && ./acme.sh --install
|
shell: cd /opt/acme.sh && ./acme.sh --install
|
||||||
- name: Generate certificate using acme.sh
|
- name: Generate certificate using acme.sh
|
||||||
shell: /root/.acme.sh/acme.sh --issue --standalone -d {{ LOCAL_DOMAIN }} --pre-hook "service nginx stop"
|
shell: /root/.acme.sh/acme.sh --issue --standalone -d {{ LOCAL_DOMAIN }} --pre-hook "service nginx stop"
|
||||||
|
ignore_errors: yes
|
||||||
- name: Install certificate in storage directory
|
- name: Install certificate in storage directory
|
||||||
shell: /root/.acme.sh/acme.sh --install-cert -d {{ LOCAL_DOMAIN }} --key-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.pem --fullchain-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.crt --reloadcmd "service nginx restart"
|
shell: /root/.acme.sh/acme.sh --install-cert -d {{ LOCAL_DOMAIN }} --key-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.pem --fullchain-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.crt --reloadcmd "service nginx restart"
|
||||||
|
|
Loading…
Reference in New Issue