mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_posix: Use path variant of config API for pidfile option
This commit is contained in:
parent
c2c4f7fbc4
commit
593b5348ef
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ local function write_pidfile()
|
|||
if pidfile_handle then
|
||||
remove_pidfile();
|
||||
end
|
||||
pidfile = module:get_option_string("pidfile");
|
||||
pidfile = module:get_option_path("pidfile", nil, "data");
|
||||
if pidfile then
|
||||
local err;
|
||||
local mode = stat(pidfile) and "r+" or "w+";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue