mod_admin_telnet: Show module status in module:list()

This commit is contained in:
Matthew Wild 2019-03-19 09:05:37 +00:00
parent cf15c2a1e0
commit ab545f19a3

View file

@ -480,7 +480,12 @@ function def_env.module:list(hosts)
end
else
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