mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Changed the command 'admin_add' to 'admin_operation', which will be called by both add/remove operations
This commit is contained in:
parent
1fda45e586
commit
b12ba15540
1 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@ function commands.list(arg)
|
|||
end
|
||||
end
|
||||
|
||||
function commands.admin_add(arg)
|
||||
function admin_operation(operation, arg)
|
||||
local modules, tree, server, refresh = "", "", "", ""
|
||||
for i, _ in ipairs(arg) do
|
||||
if arg[i]:sub(1, #"--tree=") == "--tree=" then
|
||||
|
@ -111,7 +111,7 @@ function commands.admin_add(arg)
|
|||
modules=modules..arg[i].." "
|
||||
end
|
||||
end
|
||||
os.execute("luarocks-admin "..tree.."add "..server..refresh..modules)
|
||||
os.execute("luarocks-admin "..tree..operation..server..refresh..modules)
|
||||
end
|
||||
|
||||
function commands.enabled_plugins()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue