# HG changeset patch # User Kim Alvefur # Date 1624202057 -7200 # Node ID c8a9f77d48fd914b71c6863ad31488b6d712add0 # Parent bc43731b275a83ee7e473389f3c7b938dd0a0e5f util.prosodyctl.check: Fix for net.dns vs unbound API difference net.dns returns nil for NXDOMAIN, while net.unbound returns a table with zero items and various status fields. diff -r bc43731b275a -r c8a9f77d48fd util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Sun Jun 20 17:11:59 2021 +0200 +++ b/util/prosodyctl/check.lua Sun Jun 20 17:14:17 2021 +0200 @@ -301,7 +301,7 @@ local target_hosts = set.new(); if modules:contains("c2s") then local res = dns.lookup("_xmpp-client._tcp."..idna.to_ascii(host)..".", "SRV"); - if res then + if res and #res > 0 then for _, record in ipairs(res) do if record.srv.target == "." then -- TODO is this an error if mod_c2s is enabled? print(" 'xmpp-client' service disabled by pointing to '.'"); -- FIXME Explain better what this is @@ -323,7 +323,7 @@ end if modules:contains("s2s") then local res = dns.lookup("_xmpp-server._tcp."..idna.to_ascii(host)..".", "SRV"); - if res then + if res and #res > 0 then for _, record in ipairs(res) do if record.srv.target == "." then -- TODO Is this an error if mod_s2s is enabled? print(" 'xmpp-server' service disabled by pointing to '.'"); -- FIXME Explain better what this is