util.prosodyctl: Get Luarocks server from config

This commit is contained in:
Kim Alvefur 2020-10-05 21:24:14 +02:00
parent 28aadca557
commit 42eec522a3

View file

@ -78,7 +78,8 @@ function commands.install(arg)
show_usage([[install]], [[Installs a prosody/luarocks plugin]]);
return 1;
end
call_luarocks("install", arg[1], "http://localhost/");
-- TODO finalize config option name
call_luarocks("install", arg[1], configmanager.get("*", "plugin_server") or "http://localhost/");
end
function commands.remove(arg)