mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-04-06 15:40:17 +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
|
# 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue