mod_admin_shell: module:info: Show module status

This commit is contained in:
Kim Alvefur 2021-06-12 16:40:22 +02:00
parent 3fdf0f66ab
commit bf565c76f6

View file

@ -417,6 +417,9 @@ function def_env.module:info(name, hosts)
print("on " .. component_type .. " Component " .. mod.module.host);
end
print(" path: " .. (mod.module.path or "n/a"));
if mod.module.status_message then
print(" status: [" .. mod.module.status_type .. "] " .. mod.module.status_message);
end
end
return true;
end