diff --git a/config/plugin/local_dns_resolver.sh b/config/plugin/local_dns_resolver.sh index 8c1d16e..d0f6165 100755 --- a/config/plugin/local_dns_resolver.sh +++ b/config/plugin/local_dns_resolver.sh @@ -30,6 +30,11 @@ case "${dig_cmd_return_code}" in exit "${NONOK}" ;; + 10) + echo "Dig internal error, response status: ${dig_cmd_response_status}" + exit "${NONOK}" + ;; + *) echo "Unexpected return code of dig: ${dig_cmd_return_code}" exit "${UNKNOWN}"