blob: cd547e33299b14aaf6814356a264a9fd74952bd1 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh
2
3[ "${ACTION}" = "released" ] || exit 0
4
5if [ "$SEEN" -ge 5 ]
6then
7 echo "REBOOT" > /dev/console
8 sync
9 reboot
10fi
11
12return 0