19 lines
326 B
YAML
19 lines
326 B
YAML
---
|
|
- name: Restart sendmail
|
|
ansible.builtin.service:
|
|
name: sendmail
|
|
state: restarted
|
|
|
|
- name: Update sendmail config
|
|
ansible.builtin.command:
|
|
argv:
|
|
- make
|
|
- -C
|
|
- /etc/mail
|
|
- all
|
|
notify: Restart sendmail
|
|
|
|
- name: Update aliases
|
|
ansible.builtin.command:
|
|
argv:
|
|
- newaliases
|