mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-05-14 06:56:47 +00:00
BF: Ignored IPs no longer being banned from database on restart
This commit is contained in:
parent
7046388291
commit
b73ed9b59e
1 changed files with 2 additions and 1 deletions
|
|
@ -211,7 +211,8 @@ class Jail:
|
|||
if self.database is not None:
|
||||
for ticket in self.database.getBans(
|
||||
jail=self, bantime=self.actions.getBanTime()):
|
||||
self.__queue.put(ticket)
|
||||
if not self.filter.inIgnoreIPList(ticket.getIP()):
|
||||
self.__queue.put(ticket)
|
||||
logSys.info("Jail '%s' started" % self.name)
|
||||
|
||||
def stop(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue