Keeping raspberry pi pihole up to date

After installing pihole, don’t forget to add a cronjob to update it regularly. I did so with a crontab entry:

pi@raspberry$ sudo bash 
root@raspberry$ crontab -e

Add a line:

30 1 * * * pihole -up

This will update your pihole installation every day at 1:30

Leave a comment