mirror of https://github.com/CISOfy/lynis.git
[NETW-2704] added support for local resolver used on Ubuntu 18.04
This commit is contained in:
parent
8c97017ba6
commit
170e427595
|
@ -131,7 +131,7 @@
|
|||
LogText "Found nameserver: ${I}"
|
||||
Report "nameserver[]=${I}"
|
||||
# Check if a local resolver is available (like DNSMasq)
|
||||
if [ "${I}" = "::1" -o "${I}" = "127.0.0.1" -o "${I}" = "127.0.1.1" -o "${I}" = "0.0.0.0" ]; then
|
||||
if [ "${I}" = "::1" -o "${I}" = "127.0.0.1" -o "${I}" = "127.0.0.53" -o "${I}" = "127.0.1.1" -o "${I}" = "0.0.0.0" ]; then
|
||||
LOCAL_DNSRESOLVER_FOUND=1
|
||||
fi
|
||||
if [ ! -z "${DIGBINARY}" ]; then
|
||||
|
|
Loading…
Reference in New Issue