mod_posix: Daemonize by default only when installed

This commit is contained in:
Kim Alvefur 2014-01-26 18:35:03 +01:00
parent 9498616c81
commit 4896e7ca7e

View file

@ -128,7 +128,7 @@ function syslog_sink_maker(config)
end
require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker);
local daemonize = module:get_option("daemonize");
local daemonize = module:get_option("daemonize", prosody.installed);
if daemonize == nil then
local no_daemonize = module:get_option("no_daemonize"); --COMPAT w/ 0.5
daemonize = not no_daemonize;