From 4702805d15ef8ada5b4b2dd7e46b4746f005745b Mon Sep 17 00:00:00 2001 From: Bobi Jam Date: Sat, 9 Jul 2011 12:59:54 +0800 Subject: [PATCH] LU-346 "kill -s SIGTERM" does not work on some system Change it to "kill -s TERM". Change-Id: Ib5f5a3042d082a5b82018078b17ca82a269b4592 Signed-off-by: Bobi Jam Reviewed-on: http://review.whamcloud.com/1076 Tested-by: Hudson Reviewed-by: Jinshan Xiong Tested-by: Maloo Reviewed-by: Oleg Drokin --- lustre/tests/conf-sanity.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index d9fe5266..fd30426 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -786,8 +786,8 @@ test_23a() { # was test_23 ps -ef | grep mount # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process # SIGTERM works but it does not spread to offspring processses - kill -s SIGTERM $MOUNT_PID - kill -s SIGTERM $MOUNT_LUSTRE_PID + kill -s TERM $MOUNT_PID + kill -s TERM $MOUNT_LUSTRE_PID # we can not wait $MOUNT_PID because it is not a child of this shell local PID1 local PID2 -- 1.8.3.1