mynode/rootfs/standard/usr/bin/is_not_shutting_down.sh
2020-04-22 21:59:37 -05:00

12 lines
252 B
Bash
Executable File

#!/bin/bash
# Wait to see if bitcoind is synced
echo "Checking if device is shutting down..."
if [ ! -f "/tmp/shutting_down" ]; then
echo "Not shutting down!"
exit 0
fi
echo "Device is shutting down... delay and exit failure"
sleep 30s
exit 1