mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-04-05 07:00:19 +00:00
Fix for speedtest cron not getting removed
This commit is contained in:
parent
4ff84b1ffd
commit
8a7479e9b6
1 changed files with 2 additions and 2 deletions
|
@ -478,7 +478,7 @@ SetCronTab()
|
|||
{
|
||||
# Remove OLD
|
||||
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
|
||||
crontab -l | sed -e "${old}d" >crontab.tmp
|
||||
fi
|
||||
|
@ -771,4 +771,4 @@ main() {
|
|||
if [[ $# = 0 ]]; then
|
||||
helpFunc
|
||||
fi
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue