Browse Source

BF: match up fail2ban-regex for datedetector/datetemplate changes

pull/599/head
Daniel Black 11 years ago
parent
commit
cc1a9cc45d
  1. 6
      bin/fail2ban-regex

6
bin/fail2ban-regex

@ -438,10 +438,10 @@ class Fail2banRegex(object):
if self._filter.dateDetector is not None:
print "\nDate template hits:"
out = []
for template in self._filter.dateDetector.getTemplates():
if self._verbose or template.getHits():
for template in self._filter.dateDetector.templates:
if self._verbose or template.hits:
out.append("[%d] %s" % (
template.getHits(), template.getName()))
template.hits, template.name))
pprint_list(out, "[# of hits] date format")
print "\nLines: %s" % self._line_stats

Loading…
Cancel
Save