prosodyctl: Reorder help sections
authorKim Alvefur <zash@zash.se>
Tue, 21 Dec 2021 13:11:41 +0100
changeset 12106 949c2b52f51e
parent 12105 7cd94469d15f
child 12107 fc297128c33a
prosodyctl: Reorder help sections By how old the commands are? Or how disruptive the changes are? Or just by what feels best?
prosodyctl
--- a/prosodyctl	Wed Dec 22 18:07:44 2021 +0100
+++ b/prosodyctl	Tue Dec 21 13:11:41 2021 +0100
@@ -653,14 +653,14 @@
 		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",