mirror of https://github.com/fail2ban/fail2ban
fix `dig` to filter out warnings from email address capture
parent
77efe3b40c
commit
3d23a44bb1
|
@ -44,7 +44,8 @@ actioncheck =
|
||||||
actionban = oifs=${IFS};
|
actionban = oifs=${IFS};
|
||||||
RESOLVER_ADDR="%(addr_resolver)s"
|
RESOLVER_ADDR="%(addr_resolver)s"
|
||||||
if [ "<debug>" -gt 0 ]; then echo "try to resolve $RESOLVER_ADDR"; fi
|
if [ "<debug>" -gt 0 ]; then echo "try to resolve $RESOLVER_ADDR"; fi
|
||||||
ADDRESSES=$(dig +short -t txt -q $RESOLVER_ADDR | tr -d '"')
|
ADDRESSES=$(dig +short -t txt -q $RESOLVER_ADDR | grep -v ';;' | tr -d '"')
|
||||||
|
if [ "<debug>" -gt 0 ]; then echo "returned address $ADDRESSES"; fi
|
||||||
IFS=,; ADDRESSES=$(echo $ADDRESSES)
|
IFS=,; ADDRESSES=$(echo $ADDRESSES)
|
||||||
IFS=${oifs}
|
IFS=${oifs}
|
||||||
IP=<ip>
|
IP=<ip>
|
||||||
|
|
Loading…
Reference in New Issue