mirror of https://github.com/fail2ban/fail2ban
amend for new option of `usedns=raw` - forgotten validation fix inside setUseDns
parent
8ec4e1189e
commit
b3bb8b20bf
|
@ -168,7 +168,7 @@ class Filter(JailThread):
|
|||
if isinstance(value, bool):
|
||||
value = {True: 'yes', False: 'no'}[value]
|
||||
value = value.lower() # must be a string by now
|
||||
if not (value in ('yes', 'no', 'warn')):
|
||||
if not (value in ('yes', 'warn', 'no', 'raw')):
|
||||
logSys.error("Incorrect value %r specified for usedns. "
|
||||
"Using safe 'no'" % (value,))
|
||||
value = 'no'
|
||||
|
|
Loading…
Reference in New Issue