diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-30 00:17:54 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-30 00:17:54 +0200 |
commit | 8799bd02934dbb34cfbac5223a3f4d63feb525a1 (patch) | |
tree | 41425d25cb784418e4065bf26d5dd23b54770830 /prosodyctl | |
parent | 11c4cee97a15d6b24ba73422af96fc2f6d35d22a (diff) | |
download | prosody-8799bd02934dbb34cfbac5223a3f4d63feb525a1.tar.gz prosody-8799bd02934dbb34cfbac5223a3f4d63feb525a1.zip |
prosodyctl: Also look for options that belong in global section under disabled hosts (fixes #1207)
Thanks ivucica
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -864,7 +864,7 @@ function commands.check(arg) print(" "..tostring(deprecated_global_options)) ok = false; end - for host, options in enabled_hosts() do + for host, options in it.filter(function (h) return h ~= "*" end, pairs(configmanager.getconfig())) do local host_options = set.new(it.to_array(it.keys(options))); local misplaced_options = set.intersection(host_options, known_global_options); for name in pairs(options) do @@ -884,6 +884,9 @@ function commands.check(arg) print(""); print(" You need to move the following option"..(n>1 and "s" or "")..": "..table.concat(it.to_array(misplaced_options), ", ")); end + end + for host, options in enabled_hosts() do + local host_options = set.new(it.to_array(it.keys(options))); local subdomain = host:match("^[^.]+"); if not(host_options:contains("component_module")) and (subdomain == "jabber" or subdomain == "xmpp" or subdomain == "chat" or subdomain == "im") then |