mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-06-14 22:51:34 +02:00
10 lines
298 B
YAML
10 lines
298 B
YAML
---
|
|
- name: Check if certificate already exists.
|
|
stat:
|
|
path: /etc/letsencrypt/live/{{ cert_item.domains | first }}/cert.pem
|
|
register: letsencrypt_cert
|
|
|
|
- name: Generate new certificate if one doesn't exist.
|
|
command: "{{ certbot_create_command }}"
|
|
when: not letsencrypt_cert.stat.exists
|