ansible-role-certbot/tasks/create-cert-standalone.yml
Alexis Leclerc 27aa351bfe
Move services start into a handler
when running temporary invalid nginx configuration
2021-05-27 12:05:31 +02:00

18 lines
611 B
YAML

---
- name: Check if certificate already exists. ({{ cert_item.domains }})
stat:
path: /etc/letsencrypt/live/{{ cert_item.domains | first | replace('*.', '') }}/cert.pem
register: letsencrypt_cert
- name: Stop services to allow certbot to generate a cert.
service:
name: "{{ item }}"
state: stopped
when: not letsencrypt_cert.stat.exists
with_items: "{{ certbot_create_standalone_stop_services }}"
- name: Generate new certificate if one doesn't exist. ({{ cert_item.domains }})
command: "{{ certbot_create_command }}"
when: not letsencrypt_cert.stat.exists
notify: start services