Software /
code /
prosody
Changeset
8948:3be8799263f3
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 28 Jun 2018 11:05:00 +0200 |
parents | 8946:3a095233e178 (current diff) 8947:f12cc1d7aa65 (diff) |
children | 8949:9194431b6447 |
files | prosodyctl |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/prosodyctl Thu Jun 28 01:46:28 2018 +0200 +++ b/prosodyctl Thu Jun 28 11:05:00 2018 +0200 @@ -779,6 +779,10 @@ 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