mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl check: Warn about conflict between mod_pep and mod_pep_simple
Related #1483
This commit is contained in:
parent
bb3d150756
commit
a7809d953e
1 changed files with 5 additions and 0 deletions
|
@ -937,6 +937,11 @@ function commands.check(arg)
|
|||
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("");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue