24 lines
427 B
YAML
24 lines
427 B
YAML
|
|
# Alliance Boréale - Rôle Common - Handlers
|
||
|
|
# Date: 2025-10-31
|
||
|
|
|
||
|
|
---
|
||
|
|
- name: restart chrony
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: chrony
|
||
|
|
state: restarted
|
||
|
|
|
||
|
|
- name: restart sshd
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: sshd
|
||
|
|
state: restarted
|
||
|
|
|
||
|
|
- name: reload nftables
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: nftables
|
||
|
|
state: reloaded
|
||
|
|
|
||
|
|
- name: restart fail2ban
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: fail2ban
|
||
|
|
state: restarted
|