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 <jason.wessel@windriver.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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}"
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}"