You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
680 B
24 lines
680 B
7 years ago
|
---
|
||
|
- name: Check if certificate already exists.
|
||
|
stat:
|
||
|
path: /etc/letsencrypt/live/{{ item.domains | first }}/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_stop_services
|
||
|
|
||
|
- name: Generate new certificate if one doesn't exist.
|
||
|
shell: "{{ certbot_create_command }}"
|
||
|
when: not letsencrypt_cert.stat.exists
|
||
|
|
||
|
- name: Start services after cert has been generated.
|
||
|
service:
|
||
|
name: "{{ item }}"
|
||
|
state: started
|
||
|
when: not letsencrypt_cert.stat.exists
|
||
|
with_items: certbot_create_stop_services
|