Merge pull request #2470 from jeremysherriff/patch-1

Silence updateGravity cron job unless errors occur
This commit is contained in:
Mark Drobnak 2018-10-21 14:04:39 -04:00 committed by GitHub
commit 49b8ad7e94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -16,7 +16,9 @@
# Pi-hole: Update the ad sources once a week on Sunday at a random time in the # 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 # early morning. Download any updates from the adlists
59 1 * * 7 root PATH="$PATH:/usr/local/bin/" pihole updateGravity # Squash output to log, then splat the log to stdout on error to allow for
# standard crontab job error handling.
59 1 * * 7 root PATH="$PATH:/usr/local/bin/" pihole updateGravity >/var/log/pihole_updateGravity.log || cat /var/log/pihole_updateGravity.log
# Pi-hole: Flush the log daily at 00:00 # Pi-hole: Flush the log daily at 00:00
# The flush script will use logrotate if available # The flush script will use logrotate if available

2
pihole
View file

@ -80,7 +80,7 @@ reconfigurePiholeFunc() {
updateGravityFunc() { updateGravityFunc() {
"${PI_HOLE_SCRIPT_DIR}"/gravity.sh "$@" "${PI_HOLE_SCRIPT_DIR}"/gravity.sh "$@"
exit 0 exit $?
} }
queryFunc() { queryFunc() {