mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.check: Try to clarify check for misplaced k=v in modules_enabled (thanks aab and Menel)
This commit is contained in:
parent
298145db5f
commit
99d2ebb731
1 changed files with 2 additions and 2 deletions
|
@ -506,9 +506,9 @@ local function check(arg)
|
|||
end
|
||||
for k, v in pairs(modules) do
|
||||
if type(k) ~= "number" or type(v) ~= "string" then
|
||||
print(" The " .. name .. " in the " .. host .. " section should not be a map of " .. type(k) .. " to " .. type(v)
|
||||
.. " but a list of strings, e.g.");
|
||||
print(" The " .. name .. " in the " .. host .. " section should be a list of strings, e.g.");
|
||||
print(" " .. name .. " = { \"name_of_module\", \"another_plugin\", }")
|
||||
print(" It should not contain key = value pairs, try putting them outside the {} brackets.");
|
||||
ok = false
|
||||
break
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue