mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
3da6c11ac8
1 changed files with 4 additions and 0 deletions
|
@ -779,6 +779,10 @@ function commands.check(arg)
|
|||
local ok = true;
|
||||
local function disabled_hosts(host, conf) return host ~= "*" and conf.enabled ~= false; end
|
||||
local function enabled_hosts() return it.filter(disabled_hosts, pairs(configmanager.getconfig())); end
|
||||
if not (what == nil or what == "disabled" or what == "config" or what == "dns" or what == "certs") then
|
||||
show_warning("Don't know how to check '%s'. Try one of 'config', 'dns', 'certs' or 'disabled'.", what);
|
||||
return 1;
|
||||
end
|
||||
if not what or what == "disabled" then
|
||||
local disabled_hosts_set = set.new();
|
||||
for host, host_options in it.filter("*", pairs(configmanager.getconfig())) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue