prosodyctl: Remove dependency on hostmanager, and friends

This commit is contained in:
Matthew Wild 2009-10-19 16:53:50 +01:00
parent 48879b4b0d
commit 67e111826e

View file

@ -32,7 +32,6 @@ end
-- Required to be able to find packages installed with luarocks
pcall(require, "luarocks.require")
config = require "core.configmanager"
do
@ -107,10 +106,15 @@ local error_messages = setmetatable({
["not-running"] = "Prosody is not running";
}, { __index = function (t,k) return "Error: "..(tostring(k):gsub("%-", " "):gsub("^.", string.upper)); end });
hosts = {};
local events = require "util.events".new();
require "core.hostmanager"
require "core.eventmanager".fire_event("server-starting");
hosts = {};
prosody = { hosts = hosts, events = events };
for hostname, config in pairs(config.getconfig()) do
hosts[hostname] = { events = events };
end
require "core.modulemanager"
require "util.prosodyctl"