ansible/roles/postfix/handlers/main.yaml

14 lines
285 B
YAML
Raw Normal View History

2019-10-27 23:35:12 +00:00
---
- name: "postmap sasl_passwd"
command: "postmap hash:{{ postfix_sasl_passwd_map_path }}"
- name: reload postfix
service:
name: "{{ postfix_service_name }}"
state: reloaded
- name: restart postfix
service:
name: "{{ postfix_service_name }}"
state: restarted