starter: Ignore an existing PID file if it references ourself
This commit is contained in:
committed by
Tobias Brunner
parent
83187f3883
commit
3b29590b70
@@ -276,7 +276,7 @@ static bool check_pid(char *pid_file)
|
||||
pid = atoi(buf);
|
||||
}
|
||||
fclose(pidfile);
|
||||
if (pid && kill(pid, 0) == 0)
|
||||
if (pid && pid != getpid() && kill(pid, 0) == 0)
|
||||
{ /* such a process is running */
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user