sleep faster

This commit is contained in:
mwiegand 2022-02-12 20:40:57 +01:00
parent fab4d0a476
commit dbca66326a

View file

@ -1,7 +1,7 @@
#!/bin/bash
UPTIME=$(cat /proc/uptime | cut -d. -f1)
MIN_UPTIME=$(expr 60 \* 30)
MIN_UPTIME=$(expr 60 \* 10)
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
then
echo "ABORT: uptime ($UPTIME) lower than min ($MIN_UPTIME)"