diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-27 03:12:12 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-27 03:12:12 +0000 |
commit | a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1 (patch) | |
tree | d156f4bd25ecad253efb6417bf04bf93b9a5e637 /main.lua | |
parent | d70ee791d524173cd0c203f8c9fbfabeb5fd9816 (diff) | |
download | prosody-a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1.tar.gz prosody-a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1.zip |
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -63,10 +63,15 @@ require "util.jid" ------------------------------------------------------------------------ -- Initialise modules -local modules_enabled = config.get("*", "core", "modules_enabled"); -if modules_enabled then - for _, module in pairs(modules_enabled) do - modulemanager.load(module); + +for host in pairs(hosts) do + if host ~= "*" then + local modules_enabled = config.get(host, "core", "modules_enabled"); + if modules_enabled then + for _, module in pairs(modules_enabled) do + modulemanager.load(host, module); + end + end end end |