blob: ad159501e4eb0327317dd663ba7a343f41fc6f17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- name: Reload postfix
ansible.builtin.service:
name: postfix
state: reloaded
- name: Check postfix
ansible.builtin.command: postfix check
- name: Update postfix lookup tables
ansible.builtin.command: postmap {{ item }}
with_items:
- /etc/postfix/virtual
- name: Update aliases
ansible.builtin.command: newaliases
|