mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl: Moved the 'admin_operation' function from prosodyctl to here
This commit is contained in:
parent
2aa2aff974
commit
122bde2f2c
2 changed files with 17 additions and 16 deletions
16
prosodyctl
16
prosodyctl
|
@ -98,22 +98,6 @@ function commands.list(arg)
|
|||
end
|
||||
end
|
||||
|
||||
function admin_operation(operation, arg)
|
||||
local modules, tree, server, refresh = "", "", "", ""
|
||||
for i, _ in ipairs(arg) do
|
||||
if arg[i]:sub(1, #"--tree=") == "--tree=" then
|
||||
tree = arg[i].." "
|
||||
elseif arg[i]:sub(1, #"--server=") == "--server=" then
|
||||
server = arg[i].." "
|
||||
elseif arg[i]:sub(1, #"--no-refresh") == "--no-refresh" then
|
||||
refresh = arg[i].." "
|
||||
else
|
||||
modules=modules..arg[i].." "
|
||||
end
|
||||
end
|
||||
os.execute("luarocks-admin "..tree..operation..server..refresh..modules)
|
||||
end
|
||||
|
||||
function commands.admin_add(arg)
|
||||
admin_operation("add ", arg)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue