blob: 62be72c726d23f49135b573a28109b1951800fda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
- 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
|