min wake 10 mins

This commit is contained in:
mwiegand 2022-02-12 21:18:16 +01:00
parent 2176403bcc
commit 9ea206318c

View file

@ -3,7 +3,7 @@
WOKE=$(expr $(journalctl -t systemd-sleep -b 0 -o json MESSAGE="System resumed." -n1 | jq -r .__REALTIME_TIMESTAMP) / 1000000)
NOW=$(date +%s)
UPTIME=$(expr $NOW - $WOKE)
MIN_UPTIME=$(expr 60 \* 20)
MIN_UPTIME=$(expr 60 \* 10)
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
then
echo "ABORT: uptime ($UPTIME s) lower than minimum ($MIN_UPTIME s)"