hostmanager, modulemanager: Ensure hosts[*].modules always exists.

This commit is contained in:
Waqas Hussain 2012-09-13 00:32:12 +05:00
parent aff71e544e
commit 48a297e80c
2 changed files with 2 additions and 4 deletions

View file

@ -75,6 +75,7 @@ function activate(host, host_config)
events = events_new(); events = events_new();
dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen(); dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen();
send = host_send; send = host_send;
modules = {};
}; };
if not host_config.core.component_module then -- host if not host_config.core.component_module then -- host
host_session.type = "local"; host_session.type = "local";

View file

@ -119,10 +119,7 @@ local function do_load_module(host, module_name)
end end
if not modulemap[host] then if not modulemap[host] then
modulemap[host] = {}; modulemap[host] = hosts[host].modules;
if host ~= "*" then
hosts[host].modules = modulemap[host];
end
end end
if modulemap[host][module_name] then if modulemap[host][module_name] then