diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-17 14:55:05 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-17 14:55:05 +0100 |
commit | 3d22661def97ba52851d798e6795fd8f2460b61e (patch) | |
tree | a5582d8d2126133b4a2bfac7b04409a50e1b0b1a /prosodyctl | |
parent | e082db3cf78c91b937a996cae2c71511df616e84 (diff) | |
download | prosody-3d22661def97ba52851d798e6795fd8f2460b61e.tar.gz prosody-3d22661def97ba52851d798e6795fd8f2460b61e.zip |
prosodyctl: check dns: Correctly mark host as failed if expected SRV records are not found
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -879,6 +879,7 @@ function commands.check(arg) else if c2s_srv_required then print(" No _xmpp-client SRV record found for "..host..", but it looks like you need one."); + all_targst_ok = false; else target_hosts:add(host); end @@ -895,6 +896,7 @@ function commands.check(arg) else if s2s_srv_required then print(" No _xmpp-server SRV record found for "..host..", but it looks like you need one."); + all_targets_ok = false; else target_hosts:add(host); end |