aboutsummaryrefslogtreecommitdiff
path: root/package/base-files/files/etc/rc.button/reboot
blob: cd547e33299b14aaf6814356a264a9fd74952bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

[ "${ACTION}" = "released" ] || exit 0

if [ "$SEEN" -ge 5 ]
then
	echo "REBOOT" > /dev/console
	sync
	reboot
fi

return 0