mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_posix: Some (perhaps temporary) changes to re-lock the pidfile after truncating, to avoid breaking prosodyctl
This commit is contained in:
parent
d77e181372
commit
b96ba1e82d
1 changed files with 6 additions and 2 deletions
|
@ -95,13 +95,17 @@ local function write_pidfile()
|
|||
pidfile_handle = nil;
|
||||
prosody.shutdown("Prosody already running");
|
||||
else
|
||||
pidfile_handle:close();
|
||||
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");
|
||||
else
|
||||
if lfs.lock(pidfile_handle, "w") then
|
||||
pidfile_handle:write(tostring(pposix.getpid()));
|
||||
pidfile_handle:flush();
|
||||
end
|
||||
end
|
||||
pidfile_handle:write(tostring(pposix.getpid()));
|
||||
pidfile_handle:flush();
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue