mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Implemented the 'list' command, which is a bridge to 'luarocks list'
This commit is contained in:
parent
8025f98427
commit
992d18aa62
1 changed files with 13 additions and 0 deletions
13
prosodyctl
13
prosodyctl
|
@ -85,6 +85,19 @@ local prosodyctl_timeout = (configmanager.get("*", "prosodyctl_timeout") or 5) *
|
|||
local commands = {};
|
||||
local command = table.remove(arg, 1);
|
||||
|
||||
function commands.list(arg)
|
||||
-- Need to think about the case with many flags
|
||||
local flag="--tree="
|
||||
-- I'm considering the flag is the first, but there can be many flags
|
||||
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
||||
local dir = arg[1]:match("=(.+)$")
|
||||
-- These extra double brackets allow us to correctly process names with spaces
|
||||
os.execute("luarocks list --tree=".."'"..dir.."'")
|
||||
else
|
||||
os.execute("luarocks list --tree="..prosody.paths.data.."/rocks")
|
||||
end
|
||||
end
|
||||
|
||||
function commands.enabled_plugins()
|
||||
for module in modulemanager.get_modules_for_host() do
|
||||
show_warning("%s", module)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue