mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Added the 'install' command
This commit is contained in:
parent
5b190cf276
commit
344f333e82
1 changed files with 10 additions and 0 deletions
10
prosodyctl
10
prosodyctl
|
@ -153,6 +153,16 @@ function commands.remove(arg)
|
|||
return 0
|
||||
end
|
||||
|
||||
function commands.install(arg)
|
||||
if arg[1] == "--help" then
|
||||
show_usage([[make]], [[Installs a rockspec/rock from a specified server]]);
|
||||
return 1
|
||||
end
|
||||
print("Installing module "..arg[1].." locally, from luarocks repo")
|
||||
os.execute("luarocks --tree='./plugins' install "..arg[1])
|
||||
return 0
|
||||
end
|
||||
|
||||
function commands.list(arg)
|
||||
if not arg[1] or arg[1] == "--help" then
|
||||
show_usage([[list]], [[Shows installed rocks]]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue