mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_posix: Support for command-line flags to override 'daemonize' config option
-D / --daemonize -F / --no-daemonize
This commit is contained in:
parent
e52171b0cd
commit
4167f630b8
1 changed files with 6 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue