mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Renamed the command function 'test' to 'enabled_plugins', which now only shows the plugins, in a list
This commit is contained in:
parent
cf25afe5b1
commit
8025f98427
1 changed files with 4 additions and 3 deletions
|
@ -85,9 +85,10 @@ local prosodyctl_timeout = (configmanager.get("*", "prosodyctl_timeout") or 5) *
|
|||
local commands = {};
|
||||
local command = table.remove(arg, 1);
|
||||
|
||||
function commands.test()
|
||||
show_message [[Well, hello there!]]
|
||||
show_warning("Trying to peek at the plugin directory: '%s'", modulemanager.get_modules_for_host())
|
||||
function commands.enabled_plugins()
|
||||
for module in modulemanager.get_modules_for_host() do
|
||||
show_warning("%s", module)
|
||||
end
|
||||
end
|
||||
|
||||
function commands.local_plugins()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue