init process doesn't always be a parent of logger process. It depends on execution environment. This patch implements a correct way of detecting death of sheep process in logger process.
Signed-off-by: Hitoshi Mitake <[email protected]> --- lib/logger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logger.c b/lib/logger.c index 3b77543..02bab00 100644 --- a/lib/logger.c +++ b/lib/logger.c @@ -618,7 +618,7 @@ static void logger(char *log_dir, char *outfile) unblock_sighup(); - if (getppid() == 1) + if (getppid() != sheep_pid) /* My parent (sheep process) is dead. */ break; -- 1.8.3.2 -- sheepdog mailing list [email protected] http://lists.wpkg.org/mailman/listinfo/sheepdog
