mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Report when a module is already loaded
Hopefully less confusing than "Module loaded onto 0 hosts"
This commit is contained in:
parent
53edd95324
commit
7b8f6e3c3e
1 changed files with 6 additions and 0 deletions
|
@ -631,6 +631,7 @@ describe_command [[module:load(module, host) - Load the specified module on the
|
|||
function def_env.module:load(name, hosts)
|
||||
hosts = get_hosts_with_module(hosts);
|
||||
|
||||
local already_loaded = set.new();
|
||||
-- Load the module for each host
|
||||
local ok, err, count, mod = true, nil, 0;
|
||||
for host in hosts do
|
||||
|
@ -655,12 +656,17 @@ function def_env.module:load(name, hosts)
|
|||
self.session.print("Note: Module will not be loaded after restart unless enabled in configuration");
|
||||
end
|
||||
end
|
||||
else
|
||||
already_loaded:add(host);
|
||||
end
|
||||
end
|
||||
|
||||
if not ok then
|
||||
return ok, "Last error: "..tostring(err);
|
||||
end
|
||||
if already_loaded == hosts then
|
||||
return ok, "Module already loaded";
|
||||
end
|
||||
return ok, "Module loaded onto "..count.." host"..(count ~= 1 and "s" or "");
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue