Software /
code /
prosody
Changeset
10628:25e178edbc2c
mod_posix: Add deprecation warning for the 'daemonize' option
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 26 Jan 2020 16:42:56 +0100 |
parents | 10627:88be11e9f9b9 |
children | 10629:eed5811941b2 |
files | plugins/mod_posix.lua |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_posix.lua Sun Jan 26 16:40:21 2020 +0100 +++ b/plugins/mod_posix.lua Sun Jan 26 16:42:56 2020 +0100 @@ -116,7 +116,11 @@ 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()