aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-12-21 13:11:41 +0100
committerKim Alvefur <zash@zash.se>2021-12-21 13:11:41 +0100
commitff688f28ea5336b0df87b932316544329eccb037 (patch)
tree9645fcf09e5ed941c73ae476fe6d209e4610dde4 /prosodyctl
parent84447b8d9dd02db64e3a8a7d72220c117b4bc725 (diff)
downloadprosody-ff688f28ea5336b0df87b932316544329eccb037.tar.gz
prosody-ff688f28ea5336b0df87b932316544329eccb037.zip
prosodyctl: Reorder help sections
By how old the commands are? Or how disruptive the changes are? Or just by what feels best?
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl10
1 files changed, 5 insertions, 5 deletions
diff --git a/prosodyctl b/prosodyctl
index b2fd3c63..461344d3 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -653,14 +653,14 @@ local command_runner = async.runner(function ()
print("Where COMMAND may be one of:");
local hidden_commands = require "util.set".new{ "register", "unregister" };
- local commands_order = { -- FIXME Double check order before 0.12
- "Plugin management:",
- "install"; "remove"; "list";
- "User management:",
- "adduser"; "passwd"; "deluser";
+ local commands_order = {
"Process management:",
"start"; "stop"; "restart"; "reload"; "status";
"shell",
+ "User management:",
+ "adduser"; "passwd"; "deluser";
+ "Plugin management:",
+ "install"; "remove"; "list";
"Informative:",
"about",
"check",