mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: check config: Suggest moving modules enabled on all hosts to a global_modules enabled if that is unset
This commit is contained in:
parent
ec70d37770
commit
78ab736548
1 changed files with 14 additions and 0 deletions
14
prosodyctl
14
prosodyctl
|
@ -877,6 +877,20 @@ function commands.check(arg)
|
|||
print(" All hosts are disabled. Remove enabled = false from at least one VirtualHost section")
|
||||
end
|
||||
end
|
||||
if not config["*"].modules_enabled then
|
||||
print(" No global modules_enabled is set?");
|
||||
local suggested_global_modules;
|
||||
for host, options in enabled_hosts() do
|
||||
if not options.component_module and options.modules_enabled then
|
||||
suggested_global_modules = set.intersection(suggested_global_modules or set.new(options.modules_enabled), set.new(options.modules_enabled));
|
||||
end
|
||||
end
|
||||
if not suggested_global_modules:empty() then
|
||||
print(" Consider moving these modules into modules_enabled in the global section:")
|
||||
print(" "..tostring(suggested_global_modules / function (x) return ("%q"):format(x) end));
|
||||
end
|
||||
print();
|
||||
end
|
||||
-- Check for global options under hosts
|
||||
local global_options = set.new(it.to_array(it.keys(config["*"])));
|
||||
local deprecated_global_options = set.intersection(global_options, deprecated);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue