# HG changeset patch # User Waqas Hussain # Date 1255810743 -18000 # Node ID a6e7fe0fc3dde358fd51c340acfdfa1b9a2a5fa0 # Parent 94ecd3e7be879142053b5223569e99077d19bf68 modulemanager: Fixed: Stanza modules were being auto-loaded for components (regression in hg:1e674dae31ae). diff -r 94ecd3e7be87 -r a6e7fe0fc3dd core/modulemanager.lua --- a/core/modulemanager.lua Sat Oct 17 23:50:09 2009 +0500 +++ b/core/modulemanager.lua Sun Oct 18 01:19:03 2009 +0500 @@ -65,9 +65,11 @@ end -- Load auto-loaded modules for this host - for _, module in ipairs(autoload_modules) do - if not disabled_set[module] then - load(host, module); + if hosts[host].type == "local" then + for _, module in ipairs(autoload_modules) do + if not disabled_set[module] then + load(host, module); + end end end