]> arthur.barton.de Git - AnsibleRoles.git/blob - roles/postfix/handlers/main.yml
postfix: Let debconf regenerate main.cf on changes
[AnsibleRoles.git] / roles / postfix / handlers / main.yml
1 ---
2 # postfix handlers
3
4 - name: update "postfix" configuration
5   command: dpkg-reconfigure -fnoninteractive postfix
6   notify:
7     - restart "postfix"
8
9 - name: restart "postfix"
10   service: >
11     name=postfix
12     state=restarted