Files
sunnypilot/selfdrive/orbd/orbd_wrapper.sh
2018-08-19 20:36:37 -07:00

14 lines
128 B
Bash
Executable File

#!/bin/sh
finish() {
echo "exiting orbd"
pkill -SIGINT -P $$
}
trap finish EXIT
while true; do
./orbd &
wait $!
done