mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 18:53:56 +00:00
536585b846
* Define colours within COL_TABLE * Do not output colours for non-terminal instances * Removed ":::" * Fixed indenting & spacing * Made output consistent throughout project * Reworded text to fit on standard 80 char wide Terminal screen * Made 'sudo raspi-config' warning (insufficient disk space) only show on RPi * Make "Installation/Update Complete" the final msg * Remove redundant messages * Simplify update available message * Confirm user would like to begin uninstall * If "git pull" string says "Already up-to-date.", place [i] before it * Colour Temp/Interface output * Made `pihole disable 5z` invalid * Added error fallback if invalid argument (not s/m) is detected * Quoted "$2" for consistency * Updated help text * L185/286: Replaced echo with redirect * User agents for adblock.mahakala.is/adaway.org unnecessary * Print newline on confirmation of repository reset * Add output to admin-related dnsmasq restarts * Return error message for "pihole -q" * Imply default checkout behaviour with y/N * Fix uninstall failing to remove pihole user * Print checkout 'git remote show origin' STDERR on new line * Replaced checkout "AdminLTE" wording with "Web Admin"
48 lines
1.5 KiB
Bash
Executable file
48 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Pi-hole: A black hole for Internet advertisements
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
# Network-wide ad blocking via your own hardware.
|
|
#
|
|
# Flushes Pi-hole's log file
|
|
#
|
|
# This file is copyright under the latest version of the EUPL.
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
colfile="/opt/pihole/COL_TABLE"
|
|
source ${colfile}
|
|
|
|
if [[ "$@" != *"quiet"* ]]; then
|
|
echo -ne " ${INFO} Flushing /var/log/pihole.log ..."
|
|
fi
|
|
if [[ "$@" == *"once"* ]]; then
|
|
# Nightly logrotation
|
|
if command -v /usr/sbin/logrotate >/dev/null; then
|
|
# Logrotate once
|
|
/usr/sbin/logrotate --force /etc/pihole/logrotate
|
|
else
|
|
# Copy pihole.log over to pihole.log.1
|
|
# and empty out pihole.log
|
|
# Note that moving the file is not an option, as
|
|
# dnsmasq would happily continue writing into the
|
|
# moved file (it will have the same file handler)
|
|
cp /var/log/pihole.log /var/log/pihole.log.1
|
|
echo " " > /var/log/pihole.log
|
|
fi
|
|
else
|
|
# Manual flushing
|
|
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
|
|
/usr/sbin/logrotate --force /etc/pihole/logrotate
|
|
else
|
|
# Flush both pihole.log and pihole.log.1 (if existing)
|
|
echo " " > /var/log/pihole.log
|
|
if [ -f /var/log/pihole.log.1 ]; then
|
|
echo " " > /var/log/pihole.log.1
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [[ "$@" != *"quiet"* ]]; then
|
|
echo -e "${OVER} ${TICK} Flushed /var/log/pihole.log"
|
|
fi
|