aboutsummaryrefslogtreecommitdiffstats
path: root/roles/postfix_client/tasks/main.yml
blob: 1d785a8f11b3b3f0092493eff2c2de532a138f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- name: install packages
  dnf:
    name: '{{ postfix_packages[ansible_distribution_major_version] }}'
    state: present

- name: generate postifx configuration
  template:
    src: etc/postfix/main.cf.j2
    dest: /etc/postfix/main.cf
  notify: restart postfix

- name: enable postfix
  systemd:
    name: postfix
    enabled: yes
    state: started