forked from infra/ansible
28 lines
601 B
Django/Jinja
28 lines
601 B
Django/Jinja
---
|
|
|
|
{{ ansible_fqdn }}:
|
|
- path: /etc/postfix/ssl/{{ ansible_fqdn }}.crt
|
|
user: postfix
|
|
group: postfix
|
|
perm: '400'
|
|
format: crt
|
|
notify: 'service postfix reload'
|
|
- path: /etc/postfix/ssl/{{ ansible_fqdn }}.key
|
|
user: postfix
|
|
group: postfix
|
|
perm: '400'
|
|
format: key
|
|
notify: 'service postfix reload'
|
|
- path: /etc/dovecot/ssl/{{ ansible_fqdn }}.crt
|
|
user: dovecot
|
|
group: dovecot
|
|
perm: '400'
|
|
format: crt
|
|
notify: 'service dovecot reload'
|
|
- path: /etc/dovecot/ssl/{{ ansible_fqdn }}.key
|
|
user: dovecot
|
|
group: dovecot
|
|
perm: '400'
|
|
format: key
|
|
notify: 'service dovecot reload'
|