mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
|
-- 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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue