mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-19 11:45:29 +08:00
13 lines
134 B
Plaintext
13 lines
134 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
[ "${ACTION}" = "released" ] || exit 0
|
||
|
|
||
|
if [ "$SEEN" -ge 5 ]
|
||
|
then
|
||
|
echo "REBOOT" > /dev/console
|
||
|
sync
|
||
|
reboot
|
||
|
fi
|
||
|
|
||
|
return 0
|