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