mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Show reverse dependencies in module:info()
Why was this module loaded? Now you can find out!
This commit is contained in:
parent
32445b3082
commit
283322543e
1 changed files with 6 additions and 0 deletions
|
@ -575,6 +575,12 @@ function def_env.module:info(name, hosts)
|
|||
print(" - mod_" .. dep);
|
||||
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);
|
||||
end
|
||||
end
|
||||
end
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue