Start role postfix
This commit is contained in:
parent
ddbc2ce0cb
commit
37edd8a943
4 changed files with 15 additions and 0 deletions
|
@ -16,3 +16,5 @@
|
|||
tags: deux_puissance_x
|
||||
- role: tunuifranken
|
||||
tags: tunuifranken
|
||||
- role: postfix
|
||||
tags: postfix
|
||||
|
|
3
roles/postfix/README.md
Normal file
3
roles/postfix/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Postfix
|
||||
|
||||
Installs postfix to enable sendmail, using mailserver as a relayhost.
|
4
roles/postfix/meta/main.yml
Normal file
4
roles/postfix/meta/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
|
||||
dependencies:
|
||||
- role: setup_nftables
|
6
roles/postfix/tasks/main.yml
Normal file
6
roles/postfix/tasks/main.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
|
||||
- name: Install needed packages
|
||||
become: true
|
||||
ansible.builtin.apt:
|
||||
name: postfix
|
Loading…
Reference in a new issue