12 lines
202 B
YAML
12 lines
202 B
YAML
---
|
|
# handlers file for base
|
|
|
|
- name: Restart fail2ban
|
|
ansible.builtin.systemd:
|
|
name: fail2ban
|
|
state: restarted
|
|
|
|
- name: Reload ufw
|
|
ansible.builtin.command: ufw reload
|
|
changed_when: false
|