From 9ad11cba377175f3120b56201740890fc80e4066 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 12 May 2014 01:07:40 +0200 Subject: mod_admin_telnet: Show which hosts are components and what type of component in host:list() --- plugins/mod_admin_telnet.lua | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index a3352b10..6a8783e2 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -872,9 +872,19 @@ end function def_env.host:list() local print = self.session.print; local i = 0; + local type; for host in values(array.collect(keys(prosody.hosts)):sort()) do i = i + 1; - print(host); + type = hosts[host].type; + if type == "local" then + print(host); + else + type = module:context(host):get_option_string("component_module", type); + if type ~= "component" then + type = type .. " component"; + end + print(("%s (%s)"):format(host, type)); + end end return true, i.." hosts"; end -- cgit v1.2.3