Merge pull request #12960 from nupplaphil/feat/sigterm_cron
Add posix_kill() SIGTERM for Friendica
This commit is contained in:
commit
209489d9e1
|
@ -76,8 +76,8 @@ DI::config()->reload();
|
||||||
if (empty(DI::config()->get('system', 'pidfile'))) {
|
if (empty(DI::config()->get('system', 'pidfile'))) {
|
||||||
die(<<<TXT
|
die(<<<TXT
|
||||||
Please set system.pidfile in config/local.config.php. For example:
|
Please set system.pidfile in config/local.config.php. For example:
|
||||||
|
|
||||||
'system' => [
|
'system' => [
|
||||||
'pidfile' => '/path/to/daemon.pid',
|
'pidfile' => '/path/to/daemon.pid',
|
||||||
],
|
],
|
||||||
TXT
|
TXT
|
||||||
|
@ -247,5 +247,6 @@ while (true) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function shutdown() {
|
function shutdown() {
|
||||||
|
posix_kill(posix_getpid(), SIGTERM);
|
||||||
posix_kill(posix_getpid(), SIGHUP);
|
posix_kill(posix_getpid(), SIGHUP);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue