SIGTERM is the signal to trap here, SIGKILL can't be caught.

This commit is contained in:
Yang Tse 2010-01-20 21:16:32 +00:00
Родитель 58a1557088
Коммит a872ff742c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -285,7 +285,7 @@ sub catch_zap {
die "Somebody sent me a SIG$signame";
}
$SIG{INT} = \&catch_zap;
$SIG{KILL} = \&catch_zap;
$SIG{TERM} = \&catch_zap;
##########################################################################
# Clear all possible '*_proxy' environment variables for various protocols