ajoute les archives
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user