prosodyctl check config: add recommendation to switch from admin_telnet to shell

pull/27/head
Matthew Wild 9 months ago
parent 22acb5626f
commit ac77dc3db2
  1. 6
      util/prosodyctl/check.lua

@ -643,6 +643,12 @@ local function check(arg)
print(" mod_posix is loaded in your configuration file, but it has");
print(" been deprecated. You can safely remove it.");
end
if all_modules:contains("admin_telnet") then
print("");
print(" mod_admin_telnet is being replaced by mod_admin_shell (prosodyctl shell).");
print(" To update and ensure all commands are available, simply change \"admin_telnet\" to \"admin_shell\"");
print(" in your modules_enabled list.");
end
local load_failures = {};
for mod_name in all_modules do

Loading…
Cancel
Save