mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl: Abort if no plugin source specified for the installer
Better than having a non-working default.
This commit is contained in:
parent
bd62b3bce7
commit
ea529c8062
1 changed files with 7 additions and 1 deletions
|
@ -80,7 +80,13 @@ function commands.install(arg)
|
|||
end
|
||||
show_message("Installing %s in %s", arg[1], prosody.paths.installer);
|
||||
-- TODO finalize config option name
|
||||
local ret = call_luarocks("install", arg[1], configmanager.get("*", "plugin_server") or "http://localhost/");
|
||||
local server = configmanager.get("*", "plugin_server");
|
||||
if not server then
|
||||
show_warning("There is no 'plugin_server' option in the configuration file");
|
||||
-- see https://prosody.im/doc/TODO documentation
|
||||
return 1;
|
||||
end
|
||||
local ret = call_luarocks("install", arg[1], server);
|
||||
if ret == 0 and operation == "install" then
|
||||
show_module_configuration_help(mod);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue