mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_admin_telnet: Sort hosts in module:list
This commit is contained in:
parent
7b64b46af1
commit
567e4183b5
1 changed files with 1 additions and 10 deletions
|
@ -466,16 +466,7 @@ function def_env.module:reload(name, hosts)
|
|||
end
|
||||
|
||||
function def_env.module:list(hosts)
|
||||
if hosts == nil then
|
||||
hosts = array.collect(keys(prosody.hosts));
|
||||
table.insert(hosts, 1, "*");
|
||||
end
|
||||
if type(hosts) == "string" then
|
||||
hosts = { hosts };
|
||||
end
|
||||
if type(hosts) ~= "table" then
|
||||
return false, "Please supply a host or a list of hosts you would like to see";
|
||||
end
|
||||
hosts = array.collect(set.new({ not hosts and "*" or nil }) + get_hosts_set(hosts)):sort(_sort_hosts);
|
||||
|
||||
local print = self.session.print;
|
||||
for _, host in ipairs(hosts) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue