# HG changeset patch # User Matthew Wild # Date 1738853265 0 # Node ID 9a66b53a50765414f4fb4771957fe3ee162b70af # Parent d2969e163656e3a6cdf294ea042e41ef29296a54 prosodyctl: reload: Assume reload-via-socket if any arguments passed diff -r d2969e163656 -r 9a66b53a5076 prosodyctl --- a/prosodyctl Thu Feb 06 14:46:36 2025 +0000 +++ b/prosodyctl Thu Feb 06 14:47:45 2025 +0000 @@ -516,6 +516,9 @@ return shell.shell(arg); end return shell.shell({ "config", "reload" }); + elseif arg[1] then + show_message("Admin socket not found - is it enabled and is Prosody running?"); + return 1; end local ok, running = prosodyctl.isrunning();