Add "quiet" mode + update comments in the cron file

This commit is contained in:
DL6ER 2017-05-17 12:54:43 +02:00
parent c9042ffedd
commit 42eb811910
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD
2 changed files with 10 additions and 4 deletions

View file

@ -8,6 +8,9 @@
# This file is copyright under the latest version of the EUPL.
# Please see LICENSE file for your rights under this license.
if [[ "$@" != *"quiet"* ]]; then
echo -n "::: Flushing /var/log/pihole.log ..."
fi
if [[ "$@" == *"once"* ]]; then
# Nightly logrotation
if command -v /usr/sbin/logrotate >/dev/null; then
@ -24,7 +27,6 @@ if [[ "$@" == *"once"* ]]; then
fi
else
# Manual flushing
echo -n "::: Flushing /var/log/pihole.log ..."
if command -v /usr/sbin/logrotate >/dev/null; then
# Logrotate twice to move all data out of sight of FTL
/usr/sbin/logrotate --force /etc/pihole/logrotate; sleep 3
@ -36,5 +38,8 @@ else
echo " " > /var/log/pihole.log.1
fi
fi
fi
if [[ "$@" != *"quiet"* ]]; then
echo "... done!"
fi