# HG changeset patch # User Kim Alvefur # Date 1651599377 -7200 # Node ID 3183f358a88fe5b301b7d753526bd9efaa563b93 # Parent 4d36fbcdd210ba8342eff1b9d58c8c1c629d00e1 util.prosodyctl.check: turn: Report lack of TURN services as a problem #1749 Rationale: It seems unlikely that someone who has not configured any TURN service runs 'prosodyctl check turn' expecting this to be okay. diff -r 4d36fbcdd210 -r 3183f358a88f util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Wed Apr 27 17:18:46 2022 +0200 +++ b/util/prosodyctl/check.lua Tue May 03 19:36:17 2022 +0200 @@ -1277,6 +1277,7 @@ local count = it.count(pairs(turn_services)); if count == 0 then print("Error: Unable to find any TURN services configured. Enable mod_turn_external!"); + ok = false; else print("Identified "..tostring(count).." TURN services."); print("");