2019-11-24 00:28:56 +00:00
|
|
|
# This setup the letsencrypt stuff we have
|
|
|
|
---
|
|
|
|
- name: Set up post-deploy LE stuff
|
|
|
|
copy:
|
2019-11-24 00:32:41 +00:00
|
|
|
src: ../files/etc/letsencrypt/renewal-hooks/update-postfix
|
|
|
|
dest: /etc/letsencrypt/renewal-hooks/update-postfix
|
2019-11-24 00:28:56 +00:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
2019-11-25 18:56:03 +00:00
|
|
|
|
|
|
|
# Deploy master.cf
|
|
|
|
- name: Deploy postfix conf
|
|
|
|
copy:
|
|
|
|
src: ../files/etc/postfix/master.cf
|
|
|
|
dest: /etc/postfix/master.cf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|