use uptime since last wake instead of boot
This commit is contained in:
parent
386d7bab9b
commit
4906b13a38
1 changed files with 4 additions and 2 deletions
|
@ -1,10 +1,12 @@
|
||||||
#!/bin/bash
|
#!/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)
|
MIN_UPTIME=$(expr 60 \* 20)
|
||||||
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
|
if [[ "$UPTIME" -lt "$MIN_UPTIME" ]]
|
||||||
then
|
then
|
||||||
echo "ABORT: uptime ($UPTIME) lower than min ($MIN_UPTIME)"
|
echo "ABORT: uptime ($UPTIME s) lower than minimum ($MIN_UPTIME s)"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue