mirror of https://github.com/fail2ban/fail2ban
BF: datepattern handling in fail2ban-regex
parent
e6a329210f
commit
95add8a1c5
|
@ -280,6 +280,9 @@ class Fail2banRegex(object):
|
||||||
elif command[2] == 'addjournalmatch':
|
elif command[2] == 'addjournalmatch':
|
||||||
journalmatch = command[3]
|
journalmatch = command[3]
|
||||||
self.setJournalMatch(shlex.split(journalmatch))
|
self.setJournalMatch(shlex.split(journalmatch))
|
||||||
|
elif command[2] == 'datepattern':
|
||||||
|
datepattern = command[3]
|
||||||
|
self.setDatePattern(datepattern)
|
||||||
else:
|
else:
|
||||||
print "ERROR: failed to read %s" % value
|
print "ERROR: failed to read %s" % value
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in New Issue