2016-08-27 00:10:22 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
2017-02-22 18:55:20 +01:00
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
2016-08-27 00:10:22 +02:00
|
|
|
# Controller for all pihole scripts and functions.
|
|
|
|
#
|
2017-02-22 18:55:20 +01:00
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
2017-03-08 13:16:40 +01:00
|
|
|
readonly PI_HOLE_SCRIPT_DIR="/opt/pihole"
|
2017-02-22 18:55:20 +01:00
|
|
|
|
2017-01-02 14:27:13 +01:00
|
|
|
readonly wildcardlist="/etc/dnsmasq.d/03-pihole-wildcard.conf"
|
2016-08-27 00:10:22 +02:00
|
|
|
# Must be root to use this tool
|
|
|
|
if [[ ! $EUID -eq 0 ]];then
|
2016-11-02 17:36:30 +01:00
|
|
|
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-27 00:10:22 +02:00
|
|
|
fi
|
|
|
|
|
2016-11-16 21:34:43 +01:00
|
|
|
webpageFunc() {
|
2016-12-28 17:25:14 +01:00
|
|
|
source /opt/pihole/webpage.sh
|
|
|
|
main "$@"
|
2016-11-16 21:34:43 +01:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
whitelistFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
blacklistFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-12-31 13:49:04 +01:00
|
|
|
wildcardFunc() {
|
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
debugFunc() {
|
2017-02-27 00:36:53 +01:00
|
|
|
local automated
|
2017-02-27 20:03:57 +01:00
|
|
|
local web
|
|
|
|
|
|
|
|
# Pull off the `debug` leaving passed call augmentation flags in $1
|
2017-02-27 00:36:53 +01:00
|
|
|
shift
|
2017-02-27 20:40:20 +01:00
|
|
|
if [[ "$@" == *"-a"* ]]; then
|
2017-02-27 00:36:53 +01:00
|
|
|
automated="true"
|
|
|
|
fi
|
2017-02-27 20:40:20 +01:00
|
|
|
if [[ "$@" == *"-w"* ]]; then
|
2017-02-27 20:03:57 +01:00
|
|
|
web="true"
|
|
|
|
fi
|
|
|
|
|
|
|
|
AUTOMATED=${automated:-} WEBCALL=${web:-} "${PI_HOLE_SCRIPT_DIR}"/piholeDebug.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
flushFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/piholeLogFlush.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
updatePiholeFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/update.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
reconfigurePiholeFunc() {
|
2016-11-02 17:36:30 +01:00
|
|
|
/etc/.pihole/automated\ install/basic-install.sh --reconfigure
|
|
|
|
exit 0;
|
2016-10-15 18:07:08 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
updateGravityFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/gravity.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-12-06 09:55:17 +01:00
|
|
|
scanList(){
|
2016-12-06 13:18:01 +01:00
|
|
|
domain="${1}"
|
|
|
|
list="${2}"
|
|
|
|
method="${3}"
|
|
|
|
if [[ ${method} == "-exact" ]] ; then
|
2016-12-23 17:02:56 +01:00
|
|
|
grep -i -E "(^|\s)${domain}($|\s)" "${list}"
|
2016-12-06 13:18:01 +01:00
|
|
|
else
|
2016-12-23 17:02:56 +01:00
|
|
|
grep -i "${domain}" "${list}"
|
2016-12-06 13:18:01 +01:00
|
|
|
fi
|
2016-12-06 09:55:17 +01:00
|
|
|
}
|
|
|
|
|
2017-01-02 14:27:13 +01:00
|
|
|
processWildcards() {
|
|
|
|
IFS="." read -r -a array <<< "${1}"
|
|
|
|
for (( i=${#array[@]}-1; i>=0; i-- )); do
|
|
|
|
ar=""
|
|
|
|
for (( j=${#array[@]}-1; j>${#array[@]}-i-2; j-- )); do
|
|
|
|
if [[ $j == $((${#array[@]}-1)) ]]; then
|
|
|
|
ar="${array[$j]}"
|
|
|
|
else
|
|
|
|
ar="${array[$j]}.${ar}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo "${ar}"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
queryFunc() {
|
2016-11-02 17:52:15 +01:00
|
|
|
domain="${2}"
|
2016-12-06 13:18:01 +01:00
|
|
|
method="${3}"
|
2016-12-05 17:12:28 +01:00
|
|
|
lists=( /etc/pihole/list.* /etc/pihole/blacklist.txt)
|
2016-12-05 17:09:49 +01:00
|
|
|
for list in ${lists[@]}; do
|
2017-01-02 14:27:13 +01:00
|
|
|
if [ -e "${list}" ]; then
|
|
|
|
result=$(scanList ${domain} ${list} ${method})
|
|
|
|
# Remove empty lines before couting number of results
|
|
|
|
count=$(sed '/^\s*$/d' <<< "$result" | wc -l)
|
|
|
|
echo "::: ${list} (${count} results)"
|
|
|
|
if [[ ${count} > 0 ]]; then
|
|
|
|
echo "${result}"
|
|
|
|
fi
|
|
|
|
echo ""
|
|
|
|
else
|
|
|
|
echo "::: ${list} does not exist"
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Scan for possible wildcard matches
|
2017-03-06 16:44:56 +01:00
|
|
|
if [ -e "${wildcardlist}" ]; then
|
|
|
|
local wildcards=($(processWildcards "${domain}"))
|
|
|
|
for domain in ${wildcards[@]}; do
|
|
|
|
result=$(scanList "\/${domain}\/" ${wildcardlist})
|
|
|
|
# Remove empty lines before couting number of results
|
|
|
|
count=$(sed '/^\s*$/d' <<< "$result" | wc -l)
|
|
|
|
if [[ ${count} > 0 ]]; then
|
|
|
|
echo "::: Wildcard blocking ${domain} (${count} results)"
|
|
|
|
echo "${result}"
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-26 10:39:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
chronometerFunc() {
|
2016-11-02 17:36:30 +01:00
|
|
|
shift
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/chronometer.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
uninstallFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/uninstall.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
versionFunc() {
|
2016-11-02 17:36:30 +01:00
|
|
|
shift
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/version.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-20 14:45:20 +02:00
|
|
|
restartDNS() {
|
|
|
|
dnsmasqPid=$(pidof dnsmasq)
|
|
|
|
if [[ ${dnsmasqPid} ]]; then
|
|
|
|
# service already running - reload config
|
|
|
|
if [ -x "$(command -v systemctl)" ]; then
|
|
|
|
systemctl restart dnsmasq
|
|
|
|
else
|
|
|
|
service dnsmasq restart
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# service not running, start it up
|
|
|
|
if [ -x "$(command -v systemctl)" ]; then
|
|
|
|
systemctl start dnsmasq
|
|
|
|
else
|
|
|
|
service dnsmasq start
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
piholeEnable() {
|
|
|
|
if [[ "${1}" == "0" ]] ; then
|
|
|
|
#Disable Pihole
|
2016-12-14 20:42:20 +01:00
|
|
|
sed -i 's/^addn-hosts=\/etc\/pihole\/gravity.list/#addn-hosts=\/etc\/pihole\/gravity.list/' /etc/dnsmasq.d/01-pihole.conf
|
2016-10-23 20:44:40 +02:00
|
|
|
echo "::: Blocking has been disabled!"
|
2016-11-17 22:58:00 +01:00
|
|
|
if [[ $# > 1 ]] ; then
|
2016-11-17 23:31:11 +01:00
|
|
|
if [[ ${2} == *"s"* ]] ; then
|
|
|
|
tt=${2%"s"}
|
2016-11-18 12:16:10 +01:00
|
|
|
echo "::: Blocking will be re-enabled in ${tt} seconds"
|
2016-11-17 23:31:11 +01:00
|
|
|
nohup bash -c "sleep ${tt}; pihole enable" </dev/null &>/dev/null &
|
|
|
|
elif [[ ${2} == *"m"* ]] ; then
|
|
|
|
tt=${2%"m"}
|
2016-11-18 12:16:10 +01:00
|
|
|
echo "::: Blocking will be re-enabled in ${tt} minutes"
|
2016-11-17 23:31:11 +01:00
|
|
|
tt=$((${tt}*60))
|
|
|
|
nohup bash -c "sleep ${tt}; pihole enable" </dev/null &>/dev/null &
|
2016-11-17 22:58:00 +01:00
|
|
|
else
|
2016-11-17 23:31:11 +01:00
|
|
|
echo "::: Unknown format for delayed reactivation of the blocking!"
|
|
|
|
echo "::: Example:"
|
|
|
|
echo "::: pihole disable 5s - will disable blocking for 5 seconds"
|
|
|
|
echo "::: pihole disable 7m - will disable blocking for 7 minutes"
|
2016-11-17 23:36:53 +01:00
|
|
|
echo "::: Blocking will not automatically be re-enabled!"
|
2016-11-17 22:58:00 +01:00
|
|
|
fi
|
|
|
|
fi
|
2016-10-20 14:45:20 +02:00
|
|
|
else
|
|
|
|
#Enable pihole
|
2016-10-23 20:44:40 +02:00
|
|
|
echo "::: Blocking has been enabled!"
|
2016-10-20 14:45:20 +02:00
|
|
|
sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
fi
|
|
|
|
restartDNS
|
|
|
|
}
|
|
|
|
|
2016-10-31 23:02:20 +01:00
|
|
|
piholeLogging() {
|
2016-11-02 10:35:48 +01:00
|
|
|
shift
|
|
|
|
|
|
|
|
if [[ "${1}" == "off" ]] ; then
|
|
|
|
#Disable Logging
|
|
|
|
sed -i 's/^log-queries/#log-queries/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
sed -i 's/^QUERY_LOGGING=true/QUERY_LOGGING=false/' /etc/pihole/setupVars.conf
|
|
|
|
pihole -f
|
|
|
|
echo "::: Logging has been disabled!"
|
|
|
|
elif [[ "${1}" == "on" ]] ; then
|
|
|
|
#Enable logging
|
|
|
|
sed -i 's/^#log-queries/log-queries/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
sed -i 's/^QUERY_LOGGING=false/QUERY_LOGGING=true/' /etc/pihole/setupVars.conf
|
|
|
|
echo "::: Logging has been enabled!"
|
|
|
|
else
|
|
|
|
echo "::: Invalid option passed, please pass 'on' or 'off'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
restartDNS
|
2016-10-31 23:02:20 +01:00
|
|
|
}
|
|
|
|
|
2016-10-20 14:45:20 +02:00
|
|
|
piholeStatus() {
|
2016-12-28 20:32:56 +01:00
|
|
|
if [[ $(netstat -plnt | grep -c ':53 ') > 0 ]]; then
|
2016-12-28 16:58:48 +01:00
|
|
|
if [[ "${1}" != "web" ]] ; then
|
|
|
|
echo "::: DNS service is running"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
|
|
|
echo "-1";
|
|
|
|
else
|
|
|
|
echo "::: DNS service is NOT running"
|
|
|
|
fi
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-11-02 17:28:00 +01:00
|
|
|
if [[ $(grep -i "^#addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; then
|
2016-10-21 00:40:03 +02:00
|
|
|
#list is commented out
|
2016-10-23 20:33:28 +02:00
|
|
|
if [[ "${1}" == "web" ]] ; then
|
|
|
|
echo 0;
|
|
|
|
else
|
2016-10-23 20:47:31 +02:00
|
|
|
echo "::: Pi-hole blocking is Disabled";
|
2016-10-21 00:40:03 +02:00
|
|
|
fi
|
2016-11-02 17:28:00 +01:00
|
|
|
elif [[ $(grep -i "^addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; then
|
2016-10-21 00:45:27 +02:00
|
|
|
#list set
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
2016-10-23 20:33:28 +02:00
|
|
|
echo 1;
|
|
|
|
else
|
2016-10-23 20:47:31 +02:00
|
|
|
echo "::: Pi-hole blocking is Enabled";
|
2016-10-20 14:45:20 +02:00
|
|
|
fi
|
2016-10-21 00:40:03 +02:00
|
|
|
else
|
|
|
|
#addn-host not found
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
2016-10-21 00:45:27 +02:00
|
|
|
echo 99
|
|
|
|
else
|
2016-10-21 03:15:11 +02:00
|
|
|
echo "::: No hosts file linked to dnsmasq, adding it in enabled state"
|
2016-10-21 00:45:27 +02:00
|
|
|
fi
|
|
|
|
#add addn-host= to dnsmasq
|
2016-10-21 00:40:03 +02:00
|
|
|
echo "addn-hosts=/etc/pihole/gravity.list" >> /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
restartDNS
|
2016-10-20 14:45:20 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-12-08 21:15:03 +01:00
|
|
|
tailFunc() {
|
2016-12-08 22:35:50 +01:00
|
|
|
echo "Press Ctrl-C to exit"
|
2016-12-08 21:15:03 +01:00
|
|
|
tail -F /var/log/pihole.log
|
|
|
|
exit 0
|
|
|
|
}
|
2016-10-20 14:45:20 +02:00
|
|
|
|
2017-03-08 13:16:40 +01:00
|
|
|
piholeCheckoutFunc() {
|
|
|
|
source "${PI_HOLE_SCRIPT_DIR}"/piholeCheckout.sh
|
2017-03-08 22:57:35 +01:00
|
|
|
shift
|
2017-03-08 13:16:40 +01:00
|
|
|
checkout "$@"
|
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
helpFunc() {
|
2016-10-22 07:53:04 +02:00
|
|
|
cat << EOM
|
|
|
|
::: Control all PiHole specific functions!
|
|
|
|
:::
|
|
|
|
::: Usage: pihole [options]
|
2016-11-20 15:15:27 +01:00
|
|
|
::: Add -h after -w (whitelist), -b (blacklist), -c (chronometer), or -a (admin) for more information on usage
|
2016-10-22 07:53:04 +02:00
|
|
|
:::
|
|
|
|
::: Options:
|
2017-02-08 12:42:14 +01:00
|
|
|
::: -w, whitelist Whitelist domain(s)
|
|
|
|
::: -b, blacklist Blacklist domain(s) (exact match)
|
|
|
|
::: -wild, wildcard Blacklist whole domain(s) (wildcard)
|
|
|
|
::: -d, debug Start a debugging session
|
2017-02-27 19:49:25 +01:00
|
|
|
::: Automated debugging can be enabled with `-a`.
|
|
|
|
::: 'pihole -d -a'
|
2017-02-08 12:42:14 +01:00
|
|
|
::: -f, flush Flush the 'pihole.log' file
|
|
|
|
::: -t, tail Output the last lines of the 'pihole.log' file. Lines are appended as the file grows
|
|
|
|
::: -up, updatePihole Update Pi-hole components
|
2016-12-08 21:47:30 +01:00
|
|
|
::: -r, reconfigure Reconfigure or Repair Pi-hole
|
2016-10-22 07:53:04 +02:00
|
|
|
::: -g, updateGravity Update the list of ad-serving domains
|
|
|
|
::: -c, chronometer Calculates stats and displays to an LCD
|
|
|
|
::: -h, help Show this help dialog
|
2017-02-08 12:42:14 +01:00
|
|
|
::: -v, version Show installed versions of Pi-Hole and Web-Admin
|
2016-10-22 07:53:04 +02:00
|
|
|
::: -q, query Query the adlists for a specific domain
|
2017-02-27 19:49:25 +01:00
|
|
|
::: 'pihole -q domain -exact' shows exact matches only
|
2016-10-31 23:02:20 +01:00
|
|
|
::: -l, logging Enable or Disable logging (pass 'on' or 'off')
|
2016-11-20 15:15:27 +01:00
|
|
|
::: -a, admin Admin webpage options
|
2016-10-22 07:53:04 +02:00
|
|
|
::: uninstall Uninstall Pi-Hole from your system :(!
|
2016-10-23 20:33:28 +02:00
|
|
|
::: status Is Pi-Hole Enabled or Disabled
|
|
|
|
::: enable Enable Pi-Hole DNS Blocking
|
|
|
|
::: disable Disable Pi-Hole DNS Blocking
|
2017-02-27 19:49:25 +01:00
|
|
|
::: Blocking can also be disabled only temporarily, e.g.,
|
|
|
|
::: 'pihole disable 5m' - will disable blocking for 5 minutes
|
2016-10-23 20:33:28 +02:00
|
|
|
::: restartdns Restart dnsmasq
|
2017-03-08 13:16:40 +01:00
|
|
|
::: checkout Check out different branches
|
2016-10-22 07:53:04 +02:00
|
|
|
EOM
|
2016-12-01 21:21:08 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if [[ $# = 0 ]]; then
|
2016-11-02 17:36:30 +01:00
|
|
|
helpFunc
|
2016-08-27 00:10:22 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Handle redirecting to specific functions based on arguments
|
2016-10-22 08:17:14 +02:00
|
|
|
case "${1}" in
|
2016-11-02 17:36:30 +01:00
|
|
|
"-w" | "whitelist" ) whitelistFunc "$@";;
|
|
|
|
"-b" | "blacklist" ) blacklistFunc "$@";;
|
2016-12-31 13:49:04 +01:00
|
|
|
"-wild" | "wildcard" ) wildcardFunc "$@";;
|
2017-02-27 00:36:53 +01:00
|
|
|
"-d" | "debug" ) debugFunc "$@";;
|
2016-11-02 17:36:30 +01:00
|
|
|
"-f" | "flush" ) flushFunc;;
|
|
|
|
"-up" | "updatePihole" ) updatePiholeFunc;;
|
|
|
|
"-r" | "reconfigure" ) reconfigurePiholeFunc;;
|
|
|
|
"-g" | "updateGravity" ) updateGravityFunc "$@";;
|
|
|
|
"-c" | "chronometer" ) chronometerFunc "$@";;
|
|
|
|
"-h" | "help" ) helpFunc;;
|
|
|
|
"-v" | "version" ) versionFunc "$@";;
|
|
|
|
"-q" | "query" ) queryFunc "$@";;
|
|
|
|
"-l" | "logging" ) piholeLogging "$@";;
|
|
|
|
"uninstall" ) uninstallFunc;;
|
|
|
|
"enable" ) piholeEnable 1;;
|
2016-11-17 22:58:00 +01:00
|
|
|
"disable" ) piholeEnable 0 $2;;
|
2016-11-02 17:36:30 +01:00
|
|
|
"status" ) piholeStatus "$2";;
|
|
|
|
"restartdns" ) restartDNS;;
|
2016-11-20 15:15:27 +01:00
|
|
|
"-a" | "admin" ) webpageFunc "$@";;
|
2016-12-08 21:15:03 +01:00
|
|
|
"-t" | "tail" ) tailFunc;;
|
2017-03-08 13:16:40 +01:00
|
|
|
"checkout" ) piholeCheckoutFunc "$@";;
|
2016-11-02 17:36:30 +01:00
|
|
|
* ) helpFunc;;
|
2016-10-15 18:25:17 +02:00
|
|
|
esac
|