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.
15 lines
364 B
15 lines
364 B
5 years ago
|
- name: Ensure deploy hook directory exists
|
||
|
file:
|
||
|
path: /etc/letsencrypt/renewal-hooks/deploy
|
||
|
state: directory
|
||
|
mode: 0755
|
||
|
when: certbot_deployhook is defined
|
||
|
|
||
|
- name: Create deploy hook
|
||
|
copy:
|
||
|
content: "{{ certbot_deployhook }}"
|
||
|
dest: /etc/letsencrypt/renewal-hooks/deploy/ansible.sh
|
||
|
mode: u+rwx
|
||
|
when: certbot_deployhook is defined
|
||
|
|