Mercurial > prosody-hg
diff util/prosodyctl/check.lua @ 12520:bb5f772b3189 0.12
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.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 26 May 2022 13:03:58 +0200 |
| parents | 3183f358a88f |
| children | 7b3deafb9162 3edd39c55a8a |
line wrap: on
line diff
--- a/util/prosodyctl/check.lua Mon May 16 14:51:01 2022 +0200 +++ b/util/prosodyctl/check.lua Thu May 26 13:03:58 2022 +0200 @@ -709,10 +709,6 @@ 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;
