2024-12-08 13:12:06 +08:00

22 lines
530 B
Bash

#!/bin/sh
[ -e /etc/crontabs/root ] || touch /etc/crontabs/root
SLED=$(uci -q get sms_tool.general.lednotify)
if [ "x$SLED" != "x1" ]; then
if grep -q "smsled" /etc/crontabs/root; then
grep -v "/init.d/smsled" /etc/crontabs/root > /tmp/new_cron
mv /tmp/new_cron /etc/crontabs/root
/etc/init.d/cron restart
fi
exit 0
fi
if ! grep -q "smsled" /etc/crontabs/root; then
PTR=$(uci -q get sms_tool.general.prestart)
echo "1 */$PTR * * * /etc/init.d/smsled enable" >> /etc/crontabs/root
/etc/init.d/cron restart
fi
exit 0