forked from ccchb/ansible
19 lines
408 B
YAML
19 lines
408 B
YAML
|
---
|
||
|
- name: Reload s6-rc
|
||
|
service:
|
||
|
name: s6-rc
|
||
|
state: reloaded
|
||
|
|
||
|
- name: Restart Postfix
|
||
|
command: s6-svc -t /run/service/postfix
|
||
|
|
||
|
- name: Reload Postfix
|
||
|
command: s6-svc -h /run/service/postfix
|
||
|
|
||
|
- name: Rebuild Postfix maps
|
||
|
command: 'postmap {{ item.type }}:{{ item.name }}'
|
||
|
args:
|
||
|
chdir: /usr/local/etc/postfix
|
||
|
when: item.type in postfix_rebuild_types
|
||
|
with_items: '{{ postfix_maps }}'
|