mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-30 10:51:32 +08:00
25 lines
647 B
Bash
25 lines
647 B
Bash
#!/bin/sh /etc/rc.common
|
|
START=50
|
|
|
|
run_reboot()
|
|
{
|
|
if [ -e "/usr/bin/dorboot" ]; then
|
|
chmod +x /usr/bin/dorboot
|
|
/usr/bin/dorboot 2 &
|
|
else
|
|
logger "Timed Reboot: file missing, please reinstall.Settings don't work."
|
|
sed -i '/dorboot/d' /etc/crontabs/root >/dev/null 2>&1 || exit 1
|
|
fi
|
|
}
|
|
|
|
start()
|
|
{
|
|
run_reboot
|
|
}
|
|
|
|
stop()
|
|
{
|
|
logger "Timed Reboot has stoped, but do nothing. if you need to clear settings, goto system -> timedreboot and make it disable."
|
|
echo "Timed Reboot has stoped, but do nothing. if you need to clear settings, goto system -> timedreboot and make it disable." > /tmp/timedreboot.log
|
|
}
|