5 lines
185 B
YAML
5 lines
185 B
YAML
- name: restart smtpd
|
|
service:
|
|
name: "{% if ansible_os_family == 'Alpine' %}smtpd{% else %}opensmtpd{% endif %}"
|
|
state: restarted
|
|
when: "'handler' not in ansible_skip_tags"
|