mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-20 09:11:43 +02:00
19 lines
502 B
YAML
19 lines
502 B
YAML
---
|
|
- name: Check if certificate already exists.
|
|
stat:
|
|
path: /etc/letsencrypt/live/{{ cert_item.domains | first }}/cert.pem
|
|
register: letsencrypt_cert
|
|
|
|
- name: Create deploy hook
|
|
copy:
|
|
content: "{{ certbot_deployhook }}"
|
|
dest: /etc/letsencrypt/renewal-hooks/deploy/ansible.sh
|
|
mode: u+rwx
|
|
run_once: yes
|
|
when: certbot_deployhook is defined
|
|
|
|
- name: Generate new certificate if one doesn't exist.
|
|
shell: "{{ certbot_create_command }}"
|
|
when: not letsencrypt_cert.stat.exists
|
|
|