poa-bridge/examples/supervisor

13 lines
256 B
Bash
Executable File

#!/usr/bin/env bash
while true; do
"$@"
if [ $? == 3 ]; then
# shutdown requested by user
echo "Shutting down"
exit 0
fi
echo "Restarting after 1 second"
sleep 1
done