# HG changeset patch # User Matthew Wild # Date 1257693903 0 # Node ID c59c8f3ec645e72198fb09c98b692f250c3a936b # Parent 72784ce0c0e08953101d848f7a53bdff83708d09 mod_posix: Log warning when no_daemonize is used, and instruct on how to update config diff -r 72784ce0c0e0 -r c59c8f3ec645 plugins/mod_posix.lua --- a/plugins/mod_posix.lua Sun Nov 08 15:10:44 2009 +0000 +++ b/plugins/mod_posix.lua Sun Nov 08 15:25:03 2009 +0000 @@ -104,7 +104,12 @@ 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