9 lines
138 B
YAML
9 lines
138 B
YAML
#!/usr/bin/ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
- name: restart postfix
|
|
systemd:
|
|
name: postfix
|
|
state: restarted
|
|
become: yes
|