9 lines
209 B
YAML
9 lines
209 B
YAML
---
|
|
- name: Configuration Fail2Ban
|
|
ansible.builtin.template:
|
|
src: fail2ban-jail.local.j2
|
|
dest: "{{ fail2ban_config_path }}"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart fail2ban |