2011-12-09 10:35:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
export tmpf=/tmp/cronf.$$
|
|
|
|
|
2013-06-24 21:34:46 +00:00
|
|
|
crontab=$PKG_ROOT/bin/crontab
|
|
|
|
if [ -x $crontab ]; then
|
2017-01-05 22:58:05 +00:00
|
|
|
$crontab -l | grep -v webif/lib/bin/auto \
|
|
|
|
| grep -v webif/lib/auto > $tmpf
|
2013-06-24 21:34:46 +00:00
|
|
|
[ -s $tmpf ] && $crontab $tmpf || $crontab -r
|
2012-06-15 21:34:07 +00:00
|
|
|
fi
|
|
|
|
|
2011-12-09 10:35:21 +00:00
|
|
|
ana=/mod/etc/anacrontab
|
2013-06-24 21:34:46 +00:00
|
|
|
egrep -v 'backup/backup.jim|bin/diskattrs' $ana > $tmpf
|
2011-12-09 10:35:21 +00:00
|
|
|
cp $tmpf $ana
|
|
|
|
|
2013-06-24 21:34:46 +00:00
|
|
|
[ -f $tmpf ] && rm -f $tmpf
|
|
|
|
|
2011-12-09 10:35:21 +00:00
|
|
|
exit 0
|
|
|
|
|