diff options
author | Kim Alvefur <zash@zash.se> | 2021-12-21 13:11:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-12-21 13:11:41 +0100 |
commit | ff688f28ea5336b0df87b932316544329eccb037 (patch) | |
tree | 9645fcf09e5ed941c73ae476fe6d209e4610dde4 | |
parent | 84447b8d9dd02db64e3a8a7d72220c117b4bc725 (diff) | |
download | prosody-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?
-rwxr-xr-x | prosodyctl | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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", |