mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosody: Check dependencies later in the startup sequence
This commit is contained in:
parent
32b9b7ff47
commit
1f74845db7
1 changed files with 7 additions and 3 deletions
10
prosody
10
prosody
|
@ -49,9 +49,6 @@ _G.prosody = prosody;
|
||||||
|
|
||||||
-- Check dependencies
|
-- Check dependencies
|
||||||
local dependencies = require "util.dependencies";
|
local dependencies = require "util.dependencies";
|
||||||
if not dependencies.check_dependencies() then
|
|
||||||
os.exit(1);
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Load the config-parsing module
|
-- Load the config-parsing module
|
||||||
config = require "core.configmanager"
|
config = require "core.configmanager"
|
||||||
|
@ -116,6 +113,12 @@ function read_config()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function check_dependencies()
|
||||||
|
if not dependencies.check_dependencies() then
|
||||||
|
os.exit(1);
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function load_libraries()
|
function load_libraries()
|
||||||
-- Load socket framework
|
-- Load socket framework
|
||||||
server = require "net.server"
|
server = require "net.server"
|
||||||
|
@ -388,6 +391,7 @@ init_logging();
|
||||||
sanity_check();
|
sanity_check();
|
||||||
sandbox_require();
|
sandbox_require();
|
||||||
set_function_metatable();
|
set_function_metatable();
|
||||||
|
check_dependencies();
|
||||||
load_libraries();
|
load_libraries();
|
||||||
init_global_state();
|
init_global_state();
|
||||||
read_version();
|
read_version();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue