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

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