mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_telnet: Show module status in module:list()
This commit is contained in:
parent
cf15c2a1e0
commit
ab545f19a3
1 changed files with 6 additions and 1 deletions
|
@ -480,7 +480,12 @@ function def_env.module:list(hosts)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
for _, name in ipairs(modules) do
|
for _, name in ipairs(modules) do
|
||||||
print(" "..name);
|
local status, status_text = modulemanager.get_module(host, name).module:get_status();
|
||||||
|
local status_summary = "";
|
||||||
|
if status == "warn" or status == "error" then
|
||||||
|
status_summary = (" (%s: %s)"):format(status, status_text);
|
||||||
|
end
|
||||||
|
print((" %s%s"):format(name, status_summary));
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue