mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Move definition of prosody singleton to prior to loading datamanager, and add platform
This commit is contained in:
parent
54f7dc1d2f
commit
82ca2f393b
1 changed files with 3 additions and 2 deletions
|
@ -60,6 +60,8 @@ do
|
|||
end
|
||||
end
|
||||
|
||||
prosody = { hosts = {}, events = events, platform = "posix" };
|
||||
|
||||
local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data";
|
||||
require "util.datamanager".set_data_path(data_path);
|
||||
|
||||
|
@ -111,8 +113,7 @@ local error_messages = setmetatable({
|
|||
|
||||
local events = require "util.events".new();
|
||||
|
||||
hosts = {};
|
||||
prosody = { hosts = hosts, events = events };
|
||||
hosts = prosody.hosts;
|
||||
|
||||
for hostname, config in pairs(config.getconfig()) do
|
||||
hosts[hostname] = { events = events };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue