15 lines
256 B
Plaintext
15 lines
256 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
export tmpf=/tmp/cronf.$$
|
||
|
|
||
|
crontab=$PKG_ROOT/bin/crontab
|
||
|
if [ -x $crontab ]; then
|
||
|
$crontab -l | grep -v /mod/webif/plugin/detectads/detectads > $tmpf
|
||
|
[ -s $tmpf ] && $crontab $tmpf || $crontab -r
|
||
|
fi
|
||
|
|
||
|
[ -f $tmpf ] && rm -f $tmpf
|
||
|
|
||
|
exit 0
|
||
|
|