mod_posix: Daemonize by default only when installed
authorKim Alvefur <zash@zash.se>
Sun, 26 Jan 2014 17:35:03 +0000 (18:35 +0100)
committerKim Alvefur <zash@zash.se>
Sun, 26 Jan 2014 17:35:03 +0000 (18:35 +0100)
plugins/mod_posix.lua

index 7a6ccd9478ba13fbb0b4c292914b4c044f5ef64c..69542c9690ee405f725c9284fcfffcc91dd10422 100644 (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;