From c529f3ff76ae179dc075e63b5f68fb7a5e950680 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 8 Nov 2009 15:25:03 +0000 Subject: mod_posix: Log warning when no_daemonize is used, and instruct on how to update config --- plugins/mod_posix.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'plugins/mod_posix.lua') diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index ab42a9a0..b75b9610 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -104,7 +104,12 @@ require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker); local daemonize = module:get_option("daemonize"); if daemonize == nil then - daemonize = not module:get_option("no_daemonize"); --COMPAT w/ 0.5 + local no_daemonize = module:get_option("no_daemonize"); --COMPAT w/ 0.5 + daemonize = not no_daemonize; + if no_daemonize ~= nil then + module:log("warn", "The 'no_daemonize' option is now replaced by 'daemonize'"); + module:log("warn", "Update your config from 'no_daemonize = %s' to 'daemonize = %s'", tostring(no_daemonize), tostring(daemonize)); + end end if daemonize then -- cgit v1.2.3