mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Config check for modules that are also components (fixes #1138)
This commit is contained in:
parent
cbbbb8f776
commit
90f9911c53
1 changed files with 13 additions and 0 deletions
13
prosodyctl
13
prosodyctl
|
@ -838,6 +838,19 @@ function commands.check(arg)
|
|||
end
|
||||
print();
|
||||
end
|
||||
|
||||
do -- Check for modules enabled both normally and as components
|
||||
local modules = set.new(config["*"]["modules_enabled"]);
|
||||
for host, options in enabled_hosts() do
|
||||
local component_module = options.component_module;
|
||||
if component_module and modules:contains(component_module) then
|
||||
print((" mod_%s is enabled both in modules_enabled and as Component %q %q"):format(component_module, host, component_module));
|
||||
print(" This means the service is enabled on all VirtualHosts as well as the Component.");
|
||||
print(" Are you sure this what you want? It may cause unexpected behaviour.");
|
||||
end
|
||||
end
|
||||
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