mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Remove dependency on hostmanager, and friends
This commit is contained in:
parent
48879b4b0d
commit
67e111826e
1 changed files with 8 additions and 4 deletions
12
prosodyctl
12
prosodyctl
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue