use uptime since last wake instead of boot

This commit is contained in:
mwiegand 2022-02-12 21:16:08 +01:00
parent 386d7bab9b
commit 4906b13a38

View file

@ -1,10 +1,12 @@
#!/bin/bash
UPTIME=$(cat /proc/uptime | cut -d. -f1)
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)
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
then
echo "ABORT: uptime ($UPTIME) lower than min ($MIN_UPTIME)"
echo "ABORT: uptime ($UPTIME s) lower than minimum ($MIN_UPTIME s)"
exit 0
fi