mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Relocate global prosody object creation (see fff153f7f4de)
This commit is contained in:
parent
c60b80b851
commit
6131215347
1 changed files with 8 additions and 2 deletions
10
prosodyctl
10
prosodyctl
|
@ -29,6 +29,14 @@ if CFG_DATADIR then
|
|||
end
|
||||
end
|
||||
|
||||
-- Global 'prosody' object
|
||||
prosody = {
|
||||
hosts = {},
|
||||
events = require "util.events".new(),
|
||||
platform = "posix"
|
||||
};
|
||||
local prosody = prosody;
|
||||
|
||||
config = require "core.configmanager"
|
||||
|
||||
do
|
||||
|
@ -63,8 +71,6 @@ if not require "util.dependencies".check_dependencies() then
|
|||
os.exit(1);
|
||||
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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue