mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Removed the auxiliary command 'enabled_plugins'
This commit is contained in:
parent
5aa4dda0fb
commit
3fe8683f5e
1 changed files with 1 additions and 11 deletions
12
prosodyctl
12
prosodyctl
|
@ -112,16 +112,6 @@ function commands.list(arg)
|
||||||
execute_command(arg);
|
execute_command(arg);
|
||||||
end
|
end
|
||||||
|
|
||||||
function commands.enabled_plugins(arg)
|
|
||||||
if arg[1] == "--help" then
|
|
||||||
show_usage([[enabled_plugins]], [[Shows plugins currently enabled on prosody]]);
|
|
||||||
return 1;
|
|
||||||
end
|
|
||||||
for module in modulemanager.get_modules_for_host() do
|
|
||||||
show_warning("%s", module)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function commands.adduser(arg)
|
function commands.adduser(arg)
|
||||||
if not arg[1] or arg[1] == "--help" then
|
if not arg[1] or arg[1] == "--help" then
|
||||||
show_usage([[adduser JID]], [[Create the specified user account in Prosody]]);
|
show_usage([[adduser JID]], [[Create the specified user account in Prosody]]);
|
||||||
|
@ -1387,7 +1377,7 @@ local command_runner = async.runner(function ()
|
||||||
print("Where COMMAND may be one of:\n");
|
print("Where COMMAND may be one of:\n");
|
||||||
|
|
||||||
local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" };
|
local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" };
|
||||||
local commands_order = { "install", "remove", "list", "enabled_plugins", "adduser", "passwd", "deluser", "start", "stop", "restart", "reload",
|
local commands_order = { "install", "remove", "list", "adduser", "passwd", "deluser", "start", "stop", "restart", "reload",
|
||||||
"about" };
|
"about" };
|
||||||
|
|
||||||
local done = {};
|
local done = {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue