# HG changeset patch # User Matthew Wild # Date 1744280473 -3600 # Node ID d01cfbb7fc4ff26a9f11b2ffcd5787ae08608bb3 # Parent 1b4f2d010141f6db158dced7b22b27e73ab15ef1 prosodyctl check config: add recommendation to switch from admin_telnet to shell diff -r 1b4f2d010141 -r d01cfbb7fc4f util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Thu Apr 10 11:19:48 2025 +0100 +++ b/util/prosodyctl/check.lua Thu Apr 10 11:21:13 2025 +0100 @@ -643,6 +643,12 @@ 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