1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-10-18 22:09:04 +00:00
pi-hole/pihole

142 lines
3.6 KiB
Plaintext
Raw Normal View History

2016-08-26 22:10:22 +00:00
#!/bin/bash
# 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
# Controller for all pihole scripts and functions.
#
# 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.
# Must be root to use this tool
if [[ ! $EUID -eq 0 ]];then
if [ -x "$(command -v sudo)" ];then
exec sudo bash "$0" "$@"
exit $?
else
echo "::: sudo is needed to run pihole commands. Please run this script as root or install sudo."
exit 1
fi
2016-08-26 22:10:22 +00:00
fi
whitelistFunc() {
2016-08-26 22:10:22 +00:00
shift
/opt/pihole/whitelist.sh "$@"
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
blacklistFunc() {
2016-08-26 22:10:22 +00:00
shift
/opt/pihole/blacklist.sh "$@"
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
debugFunc() {
/opt/pihole/piholeDebug.sh
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
flushFunc() {
/opt/pihole/piholeLogFlush.sh
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
updatePiholeFunc() {
2016-10-18 13:19:44 +00:00
/opt/pihole/update.sh
exit 0
2016-08-26 22:10:22 +00:00
}
reconfigurePiholeFunc() {
2016-10-15 19:43:03 +00:00
/etc/.pihole/automated\ install/basic-install.sh --reconfigure
2016-10-15 16:16:44 +00:00
exit 0;
}
updateGravityFunc() {
/opt/pihole/gravity.sh "$@"
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
setupLCDFunction() {
/opt/pihole/setupLCD.sh
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
queryFunc() {
domain=$2
for list in /etc/pihole/list.*
do
count=$(grep ${domain} $list | wc -l)
2016-09-06 18:21:56 +00:00
echo "::: ${list} (${count} results)"
if [[ ${count} > 0 ]]; then
grep ${domain} ${list}
fi
2016-09-06 18:21:56 +00:00
echo ""
done
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 08:39:27 +00:00
}
chronometerFunc() {
2016-08-26 22:10:22 +00:00
shift
/opt/pihole/chronometer.sh "$@"
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
uninstallFunc() {
/opt/pihole/uninstall.sh
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
versionFunc() {
shift
/opt/pihole/version.sh "$@"
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
helpFunc() {
2016-08-26 22:10:22 +00:00
echo "::: Control all PiHole specific functions!"
echo ":::"
echo "::: Usage: pihole [options]"
2016-10-18 13:19:44 +00:00
echo "::: Add -h after -w (whitelist), -b (blacklist), or -c (chronometer) for more information on usage"
2016-08-26 22:10:22 +00:00
echo ":::"
echo "::: Options:"
echo "::: -w, whitelist Whitelist domains"
echo "::: -b, blacklist Blacklist domains"
echo "::: -d, debug Start a debugging session if having trouble"
echo "::: -f, flush Flush the pihole.log file"
echo "::: -up, updatePihole Update Pi-hole"
2016-08-26 22:10:22 +00:00
echo "::: -g, updateGravity Update the list of ad-serving domains"
echo "::: -s, setupLCD Automatically configures the Pi to use the 2.8 LCD screen to display stats on it"
echo "::: -c, chronometer Calculates stats and displays to an LCD"
echo "::: -h, help Show this help dialog"
echo "::: -v, version Show current versions"
2016-08-26 08:39:27 +00:00
echo "::: -q, query Query the adlists for a specific domain"
2016-08-26 22:10:22 +00:00
echo "::: uninstall Uninstall Pi-Hole from your system :(!"
2016-10-15 16:16:44 +00:00
exit 0
2016-08-26 22:10:22 +00:00
}
if [[ $# = 0 ]]; then
helpFunc
fi
# Handle redirecting to specific functions based on arguments
case "$1" in
"-w" | "whitelist" ) whitelistFunc "$@";;
"-b" | "blacklist" ) blacklistFunc "$@";;
"-d" | "debug" ) debugFunc;;
"-f" | "flush" ) flushFunc;;
"-up" | "updatePihole" ) updatePiholeFunc;;
"-r" | "reconfigure" ) reconfigurePiholeFunc;;
2016-08-26 22:10:22 +00:00
"-g" | "updateGravity" ) updateGravityFunc "$@";;
"-s" | "setupLCD" ) setupLCDFunction;;
"-c" | "chronometer" ) chronometerFunc "$@";;
"-h" | "help" ) helpFunc;;
"-v" | "version" ) versionFunc "$@";;
"-q" | "query" ) queryFunc "$@";;
2016-08-26 22:10:22 +00:00
"uninstall" ) uninstallFunc;;
* ) helpFunc;;
esac