imfreedom/ansible

Finally add postfix to the mail role

2021-11-30, Gary Kramlich
4f11840a2432
Finally add postfix to the mail role
---
- name: "create group {{ vigil_group }}"
group:
name: "{{ vigil_group }}"
system: "yes"
- name: "create user {{ vigil_user }}"
user:
name: "{{ vigil_user }}"
shell: "/bin/false"
group: "{{ vigil_group }}"
system: "yes"
createhome: "yes"
home: "{{ vigil_home }}"