2016-01-30 20:12:40 +00:00
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
2017-02-22 17:55:20 +00:00
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
2016-01-30 20:12:40 +00:00
|
|
|
# Updates ad sources every week
|
|
|
|
#
|
2017-02-22 17:55:20 +00:00
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
#
|
|
|
|
#
|
2016-12-14 16:33:20 +00:00
|
|
|
#
|
2016-10-20 11:27:12 +00:00
|
|
|
# This file is under source-control of the Pi-hole installation and update
|
2020-03-18 20:35:35 +00:00
|
|
|
# scripts, any changes made to this file will be overwritten when the software
|
2016-10-20 10:42:25 +00:00
|
|
|
# is updated or re-installed. Please make any changes to the appropriate crontab
|
|
|
|
# or other cron file snippets.
|
2016-01-30 20:12:40 +00:00
|
|
|
|
2017-10-21 13:52:53 +00:00
|
|
|
# Pi-hole: Update the ad sources once a week on Sunday at a random time in the
|
|
|
|
# early morning. Download any updates from the adlists
|
2018-10-19 05:21:11 +00:00
|
|
|
# Squash output to log, then splat the log to stdout on error to allow for
|
|
|
|
# standard crontab job error handling.
|
2020-07-21 19:21:24 +00:00
|
|
|
59 1 * * 7 root PATH="$PATH:/usr/sbin:/usr/local/bin/" pihole updateGravity >/var/log/pihole_updateGravity.log || cat /var/log/pihole_updateGravity.log
|
2015-11-07 13:58:35 +00:00
|
|
|
|
2017-05-17 10:54:43 +00:00
|
|
|
# Pi-hole: Flush the log daily at 00:00
|
2017-01-12 19:39:25 +00:00
|
|
|
# The flush script will use logrotate if available
|
2017-05-17 10:54:43 +00:00
|
|
|
# parameter "once": logrotate only once (default is twice)
|
|
|
|
# parameter "quiet": don't print messages
|
2020-07-21 19:21:24 +00:00
|
|
|
00 00 * * * root PATH="$PATH:/usr/sbin:/usr/local/bin/" pihole flush once quiet
|
2017-01-12 19:39:25 +00:00
|
|
|
|
2021-07-09 05:06:10 +00:00
|
|
|
@reboot root /usr/sbin/logrotate --state /var/lib/logrotate/pihole /etc/pihole/logrotate
|
2017-10-28 11:20:02 +00:00
|
|
|
|
2017-12-09 18:00:46 +00:00
|
|
|
# Pi-hole: Grab local version and branch every 10 minutes
|
2020-07-21 19:21:24 +00:00
|
|
|
*/10 * * * * root PATH="$PATH:/usr/sbin:/usr/local/bin/" pihole updatechecker local
|
2017-12-09 18:00:46 +00:00
|
|
|
|
|
|
|
# Pi-hole: Grab remote version every 24 hours
|
2020-07-21 19:21:24 +00:00
|
|
|
59 17 * * * root PATH="$PATH:/usr/sbin:/usr/local/bin/" pihole updatechecker remote
|
|
|
|
@reboot root PATH="$PATH:/usr/sbin:/usr/local/bin/" pihole updatechecker remote reboot
|