mirror of
https://github.com/moparisthebest/pi-hole
synced 2024-11-14 05:15:17 -05:00
13 lines
458 B
Bash
13 lines
458 B
Bash
|
#!/bin/bash
|
||
|
# For each argument passed to this script
|
||
|
for var in "$@"
|
||
|
do
|
||
|
echo "Whitelisting $var..."
|
||
|
# Use sed to search for the domain in /etc/hosts and remove it using an in-place edit
|
||
|
sed -i "/$var/d" /etc/hosts
|
||
|
# Also add the domain to the whitelist.txt in /etc/pihole
|
||
|
echo "$var" >> /etc/pihole/whitelist.txt
|
||
|
done
|
||
|
echo "** $# domain(s) whitelisted."
|
||
|
# Force dnsmasq to reload /etc/hosts
|
||
|
kill -HUP $(pidof dnsmasq)
|