mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_posix: Add deprecation warning for the 'daemonize' option
This commit is contained in:
parent
a15d977f44
commit
a0dffb53e1
1 changed files with 5 additions and 1 deletions
|
@ -116,7 +116,11 @@ local daemonize = prosody.opts.daemonize;
|
|||
|
||||
if daemonize == nil then
|
||||
-- Fall back to config file if not specified on command-line
|
||||
daemonize = module:get_option("daemonize", prosody.installed);
|
||||
daemonize = module:get_option_boolean("daemonize", nil);
|
||||
if daemonize ~= nil then
|
||||
module:log("warn", "The 'daemonize' option has been deprecated, specify -D or -F on the command line instead.");
|
||||
-- TODO: Write some docs and include a link in the warning.
|
||||
end
|
||||
end
|
||||
|
||||
local function remove_log_sinks()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue