diff options
author | Kim Alvefur <zash@zash.se> | 2014-04-10 13:16:54 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-04-10 13:16:54 +0200 |
commit | a415748985aa2ec998caabb5baf1d7f083d6076a (patch) | |
tree | 521b9634144ac84ea608dbe47a15a0bcd1951695 /prosody | |
parent | eae27a73d7439930ebe9732d72b14c795b17c528 (diff) | |
parent | b9751f2455a3a7a72c2505d3fc8296ee722726cc (diff) | |
download | prosody-a415748985aa2ec998caabb5baf1d7f083d6076a.tar.gz prosody-a415748985aa2ec998caabb5baf1d7f083d6076a.zip |
Merge 0.10->trunk
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -49,9 +49,6 @@ _G.prosody = prosody; -- Check dependencies local dependencies = require "util.dependencies"; -if not dependencies.check_dependencies() then - os.exit(1); -end -- Load the config-parsing module config = require "core.configmanager" @@ -116,6 +113,12 @@ function read_config() end end +function check_dependencies() + if not dependencies.check_dependencies() then + os.exit(1); + end +end + function load_libraries() -- Load socket framework server = require "net.server" @@ -382,6 +385,7 @@ init_logging(); sanity_check(); sandbox_require(); set_function_metatable(); +check_dependencies(); load_libraries(); init_global_state(); read_version(); |