If exists, import a config file to allow for overriding script variables.

This commit is contained in:
rmceoin 2015-06-19 13:31:51 -07:00
parent a2350ba880
commit 67aba8c496
1 changed files with 6 additions and 2 deletions

View File

@ -16,8 +16,13 @@ sources=('https://adaway.org/hosts.txt'
'http://winhelp2002.mvps.org/hosts.txt')
# Variables for various stages of downloading and formatting the list
adList=/etc/hosts
origin=/etc/pihole
piholeDir=/etc/pihole
if [ -f $piholeDir/pihole.conf ]; then
. $piholeDir/pihole.conf
fi
justDomainsExtension=domains
matter=pihole.0.matter.txt
andLight=pihole.1.andLight.txt
@ -25,7 +30,6 @@ supernova=pihole.2.supernova.txt
eventHorizon=pihole.3.eventHorizon.txt
accretionDisc=pihole.4.accretionDisc.txt
eyeOfTheNeedle=pihole.5.wormhole.txt
adList=/etc/hosts
blacklist=$piholeDir/blacklist.txt
latentBlacklist=$origin/latentBlacklist.txt
whitelist=$piholeDir/whitelist.txt
@ -120,4 +124,4 @@ if [[ -f $whitelist ]];then
else
cat $origin/$matter > $origin/$andLight
gravity_advanced
fi
fi