mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.check: Fix reset of libunbound before DNS checks
Probably worked anyway but settings might not always have been applied depending on what order things happens in. Error was hidden by the pcall, which was sorta intentional...
This commit is contained in:
parent
b5a932e77f
commit
4973762abb
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ local function check(arg)
|
|||
local unbound_config = configmanager.get("*", "unbound") or {};
|
||||
unbound_config.hoststxt = false; -- don't look at /etc/hosts
|
||||
configmanager.set("*", "unbound", unbound_config);
|
||||
unbound.purge(); -- ensure the above config is used
|
||||
unbound.dns.purge(); -- ensure the above config is used
|
||||
dns = unbound.dns;
|
||||
end)
|
||||
local idna = require "util.encodings".idna;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue