mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Limit module dependency listings to loaded on current host
E.g. module:info("http") with many http modules loaded would show a lot of duplication, as each module would be listed for each host, even if not actually enabled on that host.
This commit is contained in:
parent
4fa75289f6
commit
c425da3c6a
1 changed files with 9 additions and 2 deletions
|
@ -572,13 +572,20 @@ function def_env.module:info(name, hosts)
|
|||
if mod.module.dependencies and next(mod.module.dependencies) ~= nil then
|
||||
print(" dependencies:");
|
||||
for dep in pairs(mod.module.dependencies) do
|
||||
print(" - mod_" .. dep);
|
||||
-- Dependencies are per module instance, not per host, so dependencies
|
||||
-- of/on global modules may list modules not actually loaded on the
|
||||
-- current host.
|
||||
if modulemanager.is_loaded(host, dep) then
|
||||
print(" - mod_" .. dep);
|
||||
end
|
||||
end
|
||||
end
|
||||
if mod.module.reverse_dependencies and next(mod.module.reverse_dependencies) ~= nil then
|
||||
print(" reverse dependencies:");
|
||||
for dep in pairs(mod.module.reverse_dependencies) do
|
||||
print(" - mod_" .. dep);
|
||||
if modulemanager.is_loaded(host, dep) then
|
||||
print(" - mod_" .. dep);
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue