mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +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
|
if pidfile_handle then
|
||||||
remove_pidfile();
|
remove_pidfile();
|
||||||
end
|
end
|
||||||
pidfile = module:get_option_string("pidfile");
|
pidfile = module:get_option_path("pidfile", nil, "data");
|
||||||
if pidfile then
|
if pidfile then
|
||||||
local err;
|
local err;
|
||||||
local mode = stat(pidfile) and "r+" or "w+";
|
local mode = stat(pidfile) and "r+" or "w+";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue