diff options
author | Kim Alvefur <zash@zash.se> | 2018-06-28 10:56:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-06-28 10:56:24 +0200 |
commit | 3f37550ae475abf599f65dc6feaaade22456d590 (patch) | |
tree | 51ca9506c4c0729dee37626c920fe07819d6752c | |
parent | 4fd0d882bb97b2665fa683362747f69dad6c236c (diff) | |
download | prosody-3f37550ae475abf599f65dc6feaaade22456d590.tar.gz prosody-3f37550ae475abf599f65dc6feaaade22456d590.zip |
prosodyctl: Warn if attempting to run an unknown check (fixes #1161)
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -989,6 +989,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(config.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.new(); for host, host_options in it.filter("*", pairs(config.getconfig())) do |