configmanager: Update error message to say 'VirtualHost' instead of 'Host'

This commit is contained in:
Matthew Wild 2021-12-20 20:46:24 +00:00
parent 5cb8d55857
commit c482490bff

View file

@ -173,7 +173,7 @@ do
name = prepped_name;
if rawget(config_table, name) and rawget(config_table[name], "defined")
and not rawget(config_table[name], "component_module") then
error(format("Component %q clashes with previously defined Host %q, for services use a sub-domain like conference.%s",
error(format("Component %q clashes with previously defined VirtualHost %q, for services use a sub-domain like conference.%s",
name, name, name), 0);
end
set(config_table, name, "component_module", "component");