Blacklist and automatic detection of IP address

detection is valid for all languages
This commit is contained in:
mospaeda 2015-03-23 19:43:13 +01:00
parent 89556f2480
commit 5d37b59768

View file

@ -2,13 +2,8 @@
# The Pi-hole now blocks over 120,000 ad domains # The Pi-hole now blocks over 120,000 ad domains
# Address to send ads to (the RPi) # Address to send ads to (the RPi)
piholeIP="127.0.0.1" piholeIP="127.0.0.1"
# Optionally, uncomment to automatically detect the address. Thanks Gregg # Optionally, uncomment to automatically detect the local IP address.
#piholeIP=$(ifconfig eth0 | awk '/inet addr/{print substr($2,6)}') # piholeIP=$(hostname -I)
# Below code allows to automatically detect the address with all locale
langsys=$LANG
LANG=en_US.utf8
piholeIP=$(ifconfig eth0 | awk '/inet addr/{print substr($2,6)}')
LANG=$langsys
# Config file to hold URL rules # Config file to hold URL rules
eventHorizion="/etc/dnsmasq.d/adList.conf" eventHorizion="/etc/dnsmasq.d/adList.conf"