Fix an incorrect variable name

This commit is contained in:
Alexander Gorelyshev
2026-06-08 20:10:35 +04:00
parent deaeb1f79e
commit 870dbac530

View File

@@ -6,12 +6,12 @@
tasks:
- name: "Check that the fail2ban service is active"
register: sshd_rhel_fail2ban_service
register: fail2ban_rhel_fail2ban_service
ansible.builtin.systemd:
name: fail2ban
- name: "Assert fail2ban is running"
ansible.builtin.assert:
that: sshd_rhel_fail2ban_service.status.ActiveState == "active"
that: fail2ban_rhel_fail2ban_service.status.ActiveState == "active"
success_msg: "fail2ban service is running"
fail_msg: "fail2ban service is not active"