Initial commit
This commit is contained in:
commit
11b84aa872
40 changed files with 995 additions and 0 deletions
23
tasks/packages.yml
Normal file
23
tasks/packages.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
- name: "Packages | Get installed packages"
|
||||
ansible.builtin.package_facts:
|
||||
manager: apt
|
||||
|
||||
- name: "Packages | Install packages"
|
||||
ansible.builtin.apt:
|
||||
pkg:
|
||||
- fail2ban
|
||||
- libsasl2-modules
|
||||
- pflogsumm
|
||||
- pfqueue
|
||||
- postfix
|
||||
- postfix-cdb
|
||||
- postfix-pcre
|
||||
- postfix-mta-sts-resolver
|
||||
cache_valid_time: 3600
|
||||
|
||||
- name: "Packages | Install Unbound"
|
||||
ansible.builtin.apt:
|
||||
pkg:
|
||||
- unbound
|
||||
when: unbound_install is defined and unbound_install
|
Loading…
Add table
Add a link
Reference in a new issue