mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl check: Point out that authentication and storage modules should not be added to modules_enabled (fixes #570)
This commit is contained in:
parent
1fde24fe2c
commit
b810e6f3e1
1 changed files with 14 additions and 0 deletions
14
prosodyctl
14
prosodyctl
|
@ -924,6 +924,20 @@ function commands.check(arg)
|
|||
print("");
|
||||
print(" Modules in modules_enabled should not have the 'mod_' prefix included.");
|
||||
print(" Change '"..mod.."' to '"..mod:match("^mod_(.*)").."'.");
|
||||
elseif mod:match("^auth_") then
|
||||
print("");
|
||||
print(" Authentication modules should not be added to modules_enabled,");
|
||||
print(" but be specified in the 'authentication' option.");
|
||||
print(" Remove '"..mod.."' from modules_enabled and instead add");
|
||||
print(" authentication = '"..mod:match("^auth_(.*)").."'");
|
||||
print(" For more information see https://prosody.im/doc/authentication");
|
||||
elseif mod:match("^storage_") then
|
||||
print("");
|
||||
print(" storage modules should not be added to modules_enabled,");
|
||||
print(" but be specified in the 'storage' option.");
|
||||
print(" Remove '"..mod.."' from modules_enabled and instead add");
|
||||
print(" storage = '"..mod:match("^storage_(.*)").."'");
|
||||
print(" For more information see https://prosody.im/doc/storage");
|
||||
end
|
||||
end
|
||||
local ssl = dependencies.softreq"ssl";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue