2016-01-30 15:12:40 -05:00
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
|
|
|
# (c) 2015, 2016 by Jacob Salmela
|
|
|
|
# Network-wide ad blocking via your Raspberry Pi
|
|
|
|
# http://pi-hole.net
|
|
|
|
# Updates ad sources every week
|
|
|
|
#
|
|
|
|
# Pi-hole is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2016-12-14 17:33:20 +01:00
|
|
|
#
|
2016-10-20 04:27:12 -07:00
|
|
|
# This file is under source-control of the Pi-hole installation and update
|
2016-10-20 03:42:25 -07:00
|
|
|
# scripts, any changes made to this file will be overwritten when the softare
|
|
|
|
# is updated or re-installed. Please make any changes to the appropriate crontab
|
|
|
|
# or other cron file snippets.
|
2016-12-22 22:00:17 -06:00
|
|
|
PATH="$PATH:/usr/local/bin/"
|
2016-01-30 15:12:40 -05:00
|
|
|
|
2015-11-07 07:58:35 -06:00
|
|
|
# Pi-hole: Update the ad sources once a week on Sunday at 01:59
|
2016-04-01 01:11:59 -05:00
|
|
|
# Download any updates from the adlists
|
2016-12-22 22:00:17 -06:00
|
|
|
59 1 * * 7 root pihole updateGravity
|
2015-11-07 07:58:35 -06:00
|
|
|
|
2016-09-19 20:43:04 +01:00
|
|
|
# Pi-hole: Update Pi-hole! Uncomment to enable auto update
|
2016-12-22 22:00:17 -06:00
|
|
|
#30 2 * * 7 root pihole updatePihole
|
2016-01-16 13:48:29 -06:00
|
|
|
|
2016-09-06 19:29:30 +01:00
|
|
|
# Pi-hole: Flush the log daily at 00:00 so it doesn't get out of control
|
2015-11-07 07:58:35 -06:00
|
|
|
# Stats will be viewable in the Web interface thanks to the cron job above
|
2016-12-22 22:00:17 -06:00
|
|
|
00 00 * * * root pihole flush
|