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.
This commit is contained in:
Kim Alvefur 2022-05-03 19:36:17 +02:00
parent 9e5bf4fc48
commit f0fc620d2a

View file

@ -1277,6 +1277,7 @@ local function check(arg)
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("");