mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +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,17 +95,21 @@ local function write_pidfile()
|
||||||
pidfile_handle = nil;
|
pidfile_handle = nil;
|
||||||
prosody.shutdown("Prosody already running");
|
prosody.shutdown("Prosody already running");
|
||||||
else
|
else
|
||||||
|
pidfile_handle:close();
|
||||||
pidfile_handle, err = io.open(pidfile, "w+");
|
pidfile_handle, err = io.open(pidfile, "w+");
|
||||||
if not pidfile_handle then
|
if not pidfile_handle then
|
||||||
module:log("error", "Couldn't write pidfile at %s; %s", pidfile, err);
|
module:log("error", "Couldn't write pidfile at %s; %s", pidfile, err);
|
||||||
prosody.shutdown("Couldn't write pidfile");
|
prosody.shutdown("Couldn't write pidfile");
|
||||||
end
|
else
|
||||||
|
if lfs.lock(pidfile_handle, "w") then
|
||||||
pidfile_handle:write(tostring(pposix.getpid()));
|
pidfile_handle:write(tostring(pposix.getpid()));
|
||||||
pidfile_handle:flush();
|
pidfile_handle:flush();
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local syslog_opened
|
local syslog_opened
|
||||||
function syslog_sink_maker(config)
|
function syslog_sink_maker(config)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue