mynode/rootfs/standard/usr/bin/drive_check.sh
2019-06-15 18:02:44 -05:00

23 lines
392 B
Bash
Executable File

#!/bin/bash
# Find
drive=""
drive=$(cat /tmp/.mynode_drive)
while [ -z "$drive" ]; do
sleep 10
echo "Waiting on myNode Drive..."
drive=$(cat /tmp/.mynode_drive)
done
echo "Found Drive: $drive"
lsblk $drive &> /dev/null
while [ $? -eq 0 ]; do
echo "$drive still found..."
sleep 60
lsblk $drive &> /dev/null
done
echo "Drive $drive NOT found! Rebooting."
reboot -f