1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/fail2ban/handlers/main.yml
Evangelos Foutras 4ae73a93be
ansible-lint: address no-changed-when fatal errors
Add "noqa no-changed-when" tags to handlers using the command module.
Perhaps it is wrong of ansible-lint to flag these, since handlers are
not the best place to have conditional execution.
2023-03-26 16:57:00 +03:00

8 lines
265 B
YAML

- name: Restart fail2ban
systemd:
name: fail2ban
state: restarted
- name: Reload fail2ban jails # noqa no-changed-when
shell: type fail2ban-server > /dev/null && (fail2ban-client ping > /dev/null && fail2ban-client reload > /dev/null || true) || true