Add role mail_server

This commit is contained in:
Tunui Franken 2024-01-04 19:24:50 +01:00
parent 6876eba44c
commit 67802af43e
3 changed files with 14 additions and 0 deletions

View file

@ -6,3 +6,4 @@
gather_facts: true
hosts: srvmail,srvmail-test
roles:
- mail_server

View file

@ -0,0 +1,3 @@
# mail_server
Installs the SMTP part of the mail server.

View file

@ -0,0 +1,10 @@
---
- name: Install needed packages
become: true
ansible.builtin.apt:
name:
- postfix
- postfix-mysql
- rspamd
- redis-server