8712ada6c3
Change-Id: I2cb83caaf55ca9a29c06d71c6d20f8273ec062b3 Signed-off-by: Klement Sekera <ksekera@cisco.com>
40 lines
457 B
Bash
Executable File
40 lines
457 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rv=0
|
|
|
|
atexit() {
|
|
group_id=`ps -p $$ -o pgid=`
|
|
my_id=$$
|
|
ids=`pgrep -g $group_id -d ' ' | sed "s/\b$my_id\b//g"`
|
|
echo "Killing possible remaining process IDs: $ids"
|
|
for id in $ids
|
|
do
|
|
if ps -p $id > /dev/null
|
|
then
|
|
kill -9 $id
|
|
fi
|
|
done
|
|
exit ${rv}
|
|
}
|
|
|
|
trap "atexit;" SIGINT SIGTERM
|
|
|
|
FORCE_FOREGROUND=$1
|
|
shift
|
|
|
|
source $1
|
|
shift
|
|
|
|
if [[ "${FORCE_FOREGROUND}" == "1" ]]
|
|
then
|
|
$*
|
|
else
|
|
$* &
|
|
pid=$!
|
|
wait ${pid}
|
|
fi
|
|
|
|
rv=$?
|
|
atexit
|
|
exit ${rv}
|