From mboxrd@z Thu Jan 1 00:00:00 1970 From: jason.wessel@windriver.com (Jason Wessel) Date: Tue, 22 Feb 2011 15:48:34 -0600 Subject: [ltt-dev] [PATCH 4/4] usttrace: use short signal names for busybox compatibility In-Reply-To: <1298411314-25405-4-git-send-email-jason.wessel@windriver.com> References: <1298411314-25405-1-git-send-email-jason.wessel@windriver.com> <1298411314-25405-2-git-send-email-jason.wessel@windriver.com> <1298411314-25405-3-git-send-email-jason.wessel@windriver.com> <1298411314-25405-4-git-send-email-jason.wessel@windriver.com> Message-ID: <1298411314-25405-5-git-send-email-jason.wessel@windriver.com> 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 --- usttrace | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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}" -- 1.6.6.2