self-hosting/roles/mail/tasks/main.yml

16 lines
266 B
YAML
Raw Normal View History

2023-01-26 08:54:45 +01:00
---
- name: Install Postfix
become: true
ansible.builtin.apt:
name: postfix
state: present
- name: Copy main.cf
become: true
ansible.builtin.template:
src: main.cf.j2
dest: /etc/postfix/main.cf
owner: root
group: root
mode: 0644