diff options
author | Jo?o Duarte <jvsDuarte08@gmail.com> | 2019-07-24 04:53:02 -0700 |
---|---|---|
committer | Jo?o Duarte <jvsDuarte08@gmail.com> | 2019-07-24 04:53:02 -0700 |
commit | 3e3aea359b0801d444c0a07f63cbd4543cd3cdca (patch) | |
tree | 51ef0f8dc22fc261a5504b05bc280551cd4bc1c3 /prosodyctl | |
parent | f89d5e01b0ddb4cde58073440da999d61f46a4d7 (diff) | |
download | prosody-3e3aea359b0801d444c0a07f63cbd4543cd3cdca.tar.gz prosody-3e3aea359b0801d444c0a07f63cbd4543cd3cdca.zip |
prosodyctl: Removed the admin_add and admin_remove from the commands_order variable
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1448,8 +1448,8 @@ local command_runner = async.runner(function () print("Where COMMAND may be one of:\n"); local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" }; - local commands_order = { "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", "about", "local_plugins", "enabled_plugins", - "admin_add", "admin_remove", "list", }; + local commands_order = { "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", "about", "local_plugins", + "enabled_plugins", "list"}; local done = {}; |