ajoute les archives

This commit is contained in:
Antoine Ouvrard
2023-03-09 16:44:05 +01:00
commit 38129c2455
30 changed files with 532 additions and 0 deletions
@@ -0,0 +1,21 @@
---
- name: Installing Fail2ban
ansible.builtin.apt:
update_cache: yes
name: fail2ban
- name: Copy {{ item.src }} config
ansible.builtin.template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: root
group: root
mode: 0644
backup: yes
loop:
- { src: 'jail.conf.ubuntu.j2', dest: '/etc/fail2ban/jail.conf' }
- { src: 'zimbra.conf.ubuntu.j2', dest: '/etc/fail2ban/filter.d/zimbra.conf' }
- { src: 'zimbra-postfix.conf.ubuntu.j2', dest: '/etc/fail2ban/filter.d/zimbra-postfix.conf' }
- { src: 'sendmail.conf.ubuntu.j2', dest: '/etc/fail2ban/action.d/sendmail.conf' }
- { src: 'sendmail-common.conf.ubuntu.j2', dest: '/etc/fail2ban/action.d/sendmail-common.conf' }
#notify: Reload fail2ban