1 contributor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
set -e
AWAKE_TIME="01:23:45"
GAP="10 seconds"
WAIT_TRIGGER='true'
WAIT_TRIGGER_DELAY=60
MAX_TRIGGER=60
test -r $0.conf && source $0.conf
NOW=$(date +%_H%M%S)
RTCWAKE_TIME=$([ $NOW -lt ${AWAKE_TIME//:} ] && date +%s -d $AWAKE_TIME || date +%s -d "tomorrow $AWAKE_TIME")
case "$1/$2" in
pre/suspend)
rtcwake -m no -t $RTCWAKE_TIME
;;
post/suspend)
at -M now <<< "$0 post wait-for-trigger" > /dev/null 2>&1
;;
post/wait-for-trigger)
if test $NOW -ge ${AWAKE_TIME//:} -a $NOW -le $(date +%_H%M%S -d "$AWAKE_TIME $GAP"); then
COUNT=1
while sleep $WAIT_TRIGGER_DELAY && eval $WAIT_TRIGGER; do
let COUNT++ && [ $COUNT -lt $MAX_TRIGGER ] || {
if test -n "$ON_ERROR"; then
eval "$ON_ERROR"
fi
}
done
rtcwake -m mem -t $RTCWAKE_TIME
else
rtcwake -m disable
fi
;;
esac