imfreedom/ansible

Add the new status page server

18 months ago, Gary Kramlich
857238d79c83
Add the new status page server
---
- name: "add vmail group"
group:
name: "{{ mail_group }}"
system: "yes"
tags:
- "group"
- "user"
- name: "add vmail user"
user:
name: "{{ mail_user }}"
group: "vmail"
system: "yes"
home: "/nonexistent"
shell: "/bin/false"
tags:
- "user"
- name: "create mail directory"
file:
path: "{{ mail_home }}"
state: "directory"
mode: "0750"
owner: "{{ mail_user }}"
group: "{{ mail_group }}"