From: Jason Wessel Date: Tue, 22 Feb 2011 22:37:25 +0000 (-0500) Subject: usttrace: use short signal names for busybox compatibility X-Git-Tag: v0.12~34 X-Git-Url: http://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=a1bece556695c05c03d4eb83066df553c2fc56b9 usttrace: use short signal names for busybox compatibility The kill command in coreutils will accept the short signal name, but various versions of busybox will not accept the long signal name. For compatibility with busybox use the short signal name. Signed-off-by: Jason Wessel Signed-off-by: Mathieu Desnoyers --- diff --git a/usttrace b/usttrace index 54266db..d7c5977 100755 --- a/usttrace +++ b/usttrace @@ -13,7 +13,7 @@ sighandler() { UST_CONSUMERD_PID=`cat $pidfilepath` fi # Tell the daemon to die - kill -SIGTERM "${UST_CONSUMERD_PID}" + kill -TERM "${UST_CONSUMERD_PID}" echo "Waiting for ust-consumerd to shutdown..." wait "${UST_CONSUMERD_PID}" @@ -206,7 +206,7 @@ fi if [ "$arg_syswide_daemon" != "1" ]; then # Tell the daemon to die - kill -SIGTERM "${UST_CONSUMERD_PID}" + kill -TERM "${UST_CONSUMERD_PID}" echo "Waiting for ust-consumerd to shutdown..." wait "${UST_CONSUMERD_PID}"