# HG changeset patch # User Matthew Wild # Date 1646481233 0 # Node ID 317132bca8c042b04f3d4c58aee57abf132fa3aa # Parent 10353ad0ca7af899771e0e54026ef09cbf88a1c5 prosodyctl: check: include TURN checks by default diff -r 10353ad0ca7a -r 317132bca8c0 util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Sat Mar 05 11:36:38 2022 +0000 +++ b/util/prosodyctl/check.lua Sat Mar 05 11:53:53 2022 +0000 @@ -1204,7 +1204,7 @@ print("Note: It does not ensure that the check actually reaches this specific prosody instance.") end - if what == "turn" then + if not what or what == "turn" then local turn_enabled_hosts = {}; local turn_services = {}; @@ -1246,7 +1246,7 @@ end for turn_id, turn_service in pairs(turn_services) do - print("Testing "..turn_id.."..."); + print("Testing TURN service "..turn_id.."..."); local result = check_turn_service(turn_service, opts.ping); if #result.warnings > 0 then