Fix for speedtest cron not getting removed

This commit is contained in:
itsmesid 2020-06-08 09:04:27 +05:30 committed by GitHub
parent 4ff84b1ffd
commit 8a7479e9b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -478,7 +478,7 @@ SetCronTab()
{ {
# Remove OLD # Remove OLD
crontab -l >crontab.tmp crontab -l >crontab.tmp
old=$(cat crontab.tmp | awk '/speedtest.sh/ {print FNR}') old=$(cat crontab.tmp | awk '/speedtest/ {print FNR}')
if [[ "$old" =~ ^[0-9]+$ ]]; then if [[ "$old" =~ ^[0-9]+$ ]]; then
crontab -l | sed -e "${old}d" >crontab.tmp crontab -l | sed -e "${old}d" >crontab.tmp
fi fi
@ -771,4 +771,4 @@ main() {
if [[ $# = 0 ]]; then if [[ $# = 0 ]]; then
helpFunc helpFunc
fi fi
} }