mirror of https://github.com/CIRCL/AIL-framework
21 lines
307 B
Bash
21 lines
307 B
Bash
|
#!/bin/bash
|
||
|
signalListener() {
|
||
|
"$@" &
|
||
|
pid="$!"
|
||
|
trap "echo 'Stopping'; kill -SIGTERM $pid" SIGINT SIGTERM
|
||
|
|
||
|
while kill -0 $pid > /dev/null 2>&1; do
|
||
|
wait
|
||
|
done
|
||
|
}
|
||
|
|
||
|
|
||
|
source ./AILENV/bin/activate
|
||
|
cd bin
|
||
|
./LAUNCH.sh -l
|
||
|
./LAUNCH.sh -f
|
||
|
|
||
|
signalListener tail -f /dev/null $@
|
||
|
|
||
|
./LAUNCH.sh -k
|