Software /
code /
prosody
Diff
plugins/mod_posix.lua @ 11062:dd3b1b9d867d
mod_posix: Daemonize later
Daemonizing later means we can use that as a "successful startup"
signal and problems can be reported via exit code.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 08 Sep 2020 22:50:43 +0200 |
parent | 11047:93cdd1ece689 |
child | 11179:96da09c771a1 |
line wrap: on
line diff
--- a/plugins/mod_posix.lua Thu Sep 03 13:10:46 2020 +0100 +++ b/plugins/mod_posix.lua Tue Sep 08 22:50:43 2020 +0200 @@ -117,9 +117,7 @@ write_pidfile(); end end - if not prosody.start_time then -- server-starting - daemonize_server(); - end + module:hook("server-started", daemonize_server) else -- Not going to daemonize, so write the pid of this process write_pidfile();