15 lines
256 B
Bash
Executable File
15 lines
256 B
Bash
Executable File
#!/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
|
|
|