Files
ansible/roles/global_smtp_relay/tasks/main.yml
VC ed61026b45
Some checks failed
ansible-lint / lint-everything (push) Failing after 1m22s
: add smtp global relay
2025-03-29 11:44:21 +01:00

16 lines
278 B
YAML

---
- name: Install postfix
ansible.builtin.package:
name: postfix
state: present
- name: Put configuration
ansible.builtin.template:
src: main.cf.j2
dest: /etc/postfix/main.cf.j2
owner: root
group: root
mode: "0o640"
notify: Restart postfix