mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
35 lines
986 B
YAML
35 lines
986 B
YAML
---
|
|
- name: Get installed certs.
|
|
shell: |
|
|
{{ certbot_script }} certificates | grep "Domains:" | awk '{ gsub(/ Domains: /,""); print }'
|
|
changed_when: false
|
|
register: letsencrypt_certs
|
|
|
|
- name: Set cert_exists to false (to check if cert exists).
|
|
set_fact:
|
|
cert_exists: false
|
|
|
|
- name: Check if the cert exists.
|
|
set_fact:
|
|
cert_exists: true
|
|
when: cert_item.domains | sort | difference(item) == []
|
|
with_list: "{{ letsencrypt_certs.stdout_lines }}"
|
|
|
|
- name: Stop services to allow certbot to generate a cert.
|
|
service:
|
|
name: "{{ item }}"
|
|
state: stopped
|
|
when: not cert_exists
|
|
with_items: "{{ certbot_create_standalone_stop_services }}"
|
|
|
|
- name: Generate new certificate if one doesn't exist.
|
|
command: "{{ certbot_create_command }}"
|
|
when: not cert_exists
|
|
|
|
- name: Start services after cert has been generated.
|
|
service:
|
|
name: "{{ item }}"
|
|
state: started
|
|
when: not cert_exists
|
|
with_items: "{{ certbot_create_standalone_stop_services }}"
|