mod_posix: Support for command-line flags to override 'daemonize' config option

-D / --daemonize
-F / --no-daemonize
This commit is contained in:
Matthew Wild 2020-01-19 15:28:09 +00:00
parent aa2d032179
commit 7c65f89960

View file

@ -126,7 +126,12 @@ function syslog_sink_maker(config) -- luacheck: ignore 212/config
end
require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker);
local daemonize = module:get_option("daemonize", prosody.installed);
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);
end
local function remove_log_sinks()
local lm = require "core.loggingmanager";