1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:35:56 +00:00

update_daemon2: don't expect client part to be executable

This commit is contained in:
Andrew Dolgov
2008-01-23 15:29:24 +01:00
parent 884c0a367b
commit 73d3b9b1f6
2 changed files with 6 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
define('MAX_JOBS', 2);
define('CLIENT_PROCESS', './update_daemon2_client.php SRV_RUN_OK');
define('SPAWN_INTERVAL', DAEMON_SLEEP_INTERVAL);
define('PHP_EXECUTABLE', '/usr/bin/php');
$running_jobs = 0;
$last_checkpoint = -1;
@@ -69,7 +70,7 @@
} else {
pcntl_signal(SIGCHLD, SIG_IGN);
pcntl_signal(SIGINT, SIG_DFL);
passthru(CLIENT_PROCESS);
passthru(PHP_EXECUTABLE . ' ' . CLIENT_PROCESS);
exit(0);
}
}