From d1d68bb0a77349871fa0a30a46bf3a2540e03870 Mon Sep 17 00:00:00 2001 From: Alexander Gorelyshev Date: Tue, 9 Jun 2026 20:35:36 +0400 Subject: [PATCH] Fix a bug in the `sshd` jail config template --- roles/fail2ban_rhel/templates/sshd.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/fail2ban_rhel/templates/sshd.conf.j2 b/roles/fail2ban_rhel/templates/sshd.conf.j2 index db8df22..9be7a0f 100644 --- a/roles/fail2ban_rhel/templates/sshd.conf.j2 +++ b/roles/fail2ban_rhel/templates/sshd.conf.j2 @@ -11,4 +11,4 @@ findtime = {{ fail2ban_rhel_jail_sshd.findtime }} maxretry = {{ fail2ban_rhel_jail_sshd.maxretry }} bantime = {{ fail2ban_rhel_jail_sshd.bantime }} -ignoreip = {{ fail2ban_rhel.ignoreips | default([]) | join(' ') }} +ignoreip = {{ fail2ban_rhel_jail_sshd.ignoreips | default([]) | join(' ') }}