2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00

detect crash on shutdown in stop.pl

This commit is contained in:
Evan Hunt 2019-01-30 17:12:40 -08:00
parent 7b86c01d53
commit 9bf37f4e48

View File

@ -236,7 +236,12 @@ sub clean_pid_file {
return unless defined($pid);
return if (send_signal(0, $pid) == 0);
# If we're here, the PID file hasn't been cleaned up yet
if (send_signal(0, $pid) == 0) {
print "I:$test:$server crashed on shutdown\n";
$errors = 1;
return;
}
return $server;
}