util.prosodyctl.check: Remove now redundant unbound config tweak

This is now done in net.unbound itself

Turning it back on in the config may still cause the problem of entries
there masking the DNS values.
This commit is contained in:
Kim Alvefur 2022-05-26 13:03:58 +02:00
parent 24288146ae
commit d545540ae0

View file

@ -709,10 +709,6 @@ local function check(arg)
local dns = require "net.dns";
pcall(function ()
local unbound = require"net.unbound";
local unbound_config = configmanager.get("*", "unbound") or {};
unbound_config.hoststxt = false; -- don't look at /etc/hosts
configmanager.set("*", "unbound", unbound_config);
unbound.dns.purge(); -- ensure the above config is used
dns = unbound.dns;
end)
local idna = require "util.encodings".idna;