mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
20 lines
307 B
Bash
Executable file
20 lines
307 B
Bash
Executable file
#!/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
|