mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_posix: Truncate the pidfile before writing to ensure that we never overwrite with a PID shorter than the previous, and end with an invalid PID in the file.
This commit is contained in:
parent
ed0cef7718
commit
d77e181372
1 changed files with 5 additions and 0 deletions
|
@ -95,6 +95,11 @@ local function write_pidfile()
|
|||
pidfile_handle = nil;
|
||||
prosody.shutdown("Prosody already running");
|
||||
else
|
||||
pidfile_handle, err = io.open(pidfile, "w+");
|
||||
if not pidfile_handle then
|
||||
module:log("error", "Couldn't write pidfile at %s; %s", pidfile, err);
|
||||
prosody.shutdown("Couldn't write pidfile");
|
||||
end
|
||||
pidfile_handle:write(tostring(pposix.getpid()));
|
||||
pidfile_handle:flush();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue