Software /
code /
prosody
Changeset
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 | 12510:cd3b5912c9a3 |
children | 12521:f07b3f6ad903 12522:1671cb924002 |
files | util/prosodyctl/check.lua |
diffstat | 1 files changed, 0 insertions(+), 4 deletions(-) [+] |
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;