diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-31 02:52:12 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-31 02:52:12 +0100 |
commit | 0f26f2d5c92e5fa7102ada3831987821dcf3a6c0 (patch) | |
tree | 2021f270b83854bcc28be7062d48b6681a2bee1f /prosodyctl | |
parent | adc4440fd83a3b9124f91ad38eb8aa2c933284cc (diff) | |
parent | 941b35fe8a1f2b85bfc7928c743f02bdb55a151b (diff) | |
download | prosody-0f26f2d5c92e5fa7102ada3831987821dcf3a6c0.tar.gz prosody-0f26f2d5c92e5fa7102ada3831987821dcf3a6c0.zip |
Merge 0.11->trunk
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -973,9 +973,15 @@ function commands.check(arg) end end if all_modules:contains("vcard") and all_modules:contains("vcard_legacy") then + print(""); print(" Both mod_vcard_legacy and mod_vcard are enabled but they conflict"); print(" with each other. Remove one."); end + if all_modules:contains("pep") and all_modules:contains("pep_simple") then + print(""); + print(" Both mod_pep_simple and mod_pep are enabled but they conflict"); + print(" with each other. Remove one."); + end for host, host_config in pairs(config) do --luacheck: ignore 213/host if type(rawget(host_config, "storage")) == "string" and rawget(host_config, "default_storage") then print(""); |