util.dependencies, prosody, prosodyctl: Give util.dependencies a check_dependencies() function so the caller can decide what to do when dependencies aren't met - update prosody/prosodyctl for this change

This commit is contained in:
Matthew Wild 2010-01-28 14:56:47 +00:00
parent 74ceb83cca
commit 08284a586e
3 changed files with 95 additions and 85 deletions

View file

@ -29,10 +29,13 @@ if CFG_DATADIR then
end
end
if not require "util.dependencies".check_dependencies() then
os.exit(1);
end
-- Required to be able to find packages installed with luarocks
pcall(require, "luarocks.require")
require "util.dependencies"
config = require "core.configmanager"