forked from ISTI-ansible-roles/ansible-roles
16 lines
662 B
YAML
16 lines
662 B
YAML
---
|
|
- name: Create the acme hooks directory if it does not yet exist
|
|
file: dest={{ letsencrypt_acme_services_scripts_dir }} state=directory owner=root group=root
|
|
when:
|
|
- postgresql_letsencrypt_managed
|
|
- letsencrypt_acme_install
|
|
tags: [ 'postgresql', 'postgres', 'letsencrypt' ]
|
|
|
|
- name: Install a script that fix the letsencrypt certificate for postgresql and then reload the service
|
|
copy: src=postgresql-letsencrypt-acme.sh dest={{ letsencrypt_acme_services_scripts_dir }}/postgresql owner=root group=root mode=4555
|
|
when:
|
|
- postgresql_letsencrypt_managed
|
|
- letsencrypt_acme_install
|
|
tags: [ 'postgresql', 'postgres', 'letsencrypt' ]
|
|
|