Add error checking for grep and correct typos

This commit is contained in:
Chad Howell 2016-01-30 20:51:28 -05:00
parent d18e064d21
commit 5060ed8970
1 changed files with 17 additions and 10 deletions

View File

@ -293,19 +293,26 @@ versionCheckDNSmasq(){
dnsFile2="/etc/dnsmasq.conf.orig" dnsFile2="/etc/dnsmasq.conf.orig"
dnsSearch="addn-hosts=/etc/pihole/gravity.list" dnsSearch="addn-hosts=/etc/pihole/gravity.list"
# Check dnsmasq.conf for pihole magic # Check if /etc/dnsmasq.conf exists
if grep -q $dnsSearch $dnsFile1; then if [ -d "/etc/dnsmasq.conf" ]; then
# If true, Check dnsmasq.conf.orig for pihole magic # If true, Check dnsmasq.conf for pihole magic
if grep -q $dnsSearch $dnsFile1; then if grep -q $dnsSearch $dnsFile1; then
# If true, use advanced/dnsmasq.conf.original # If true, Check dnsmasq.conf.orig for pihole magic
$SUDO mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig if grep -q $dnsSearch $dnsFile2; then
$SUDO cp /etc/.pihole/advanced/dnsmasq.conf.original /etc/dnsmasq.conf # If true, use advanced/dnsmasq.conf.original
else $SUDO mv -f /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
# If false, mv original file back $SUDO cp /etc/.pihole/advanced/dnsmasq.conf.original /etc/dnsmasq.conf
$SUDO mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig else
# If false, mv original file back
$SUDO mv -f /etc/dnsmasq.conf.orig /etc/dnsmasq.conf
fi
# If false, This is a fresh install
fi fi
# If false, This is a fresh install else
# If false, use advanced/dnsmasq.conf.original
$SUDO cp /etc/.pihole/advanced/dnsmasq.conf.original /etc/dnsmasq.conf
fi fi
$SUDO cp /etc/.pihole/advanced/01-pihole.conf /etc/dnsmasq.d/01-pihole.conf $SUDO cp /etc/.pihole/advanced/01-pihole.conf /etc/dnsmasq.d/01-pihole.conf
$SUDO sed -i "s/@INT@/$piholeInterface/" /etc/dnsmasq.d/01-pihole.conf $SUDO sed -i "s/@INT@/$piholeInterface/" /etc/dnsmasq.d/01-pihole.conf
$SUDO sed -i "s/@DNS1@/$piholeDNS1/" /etc/dnsmasq.d/01-pihole.conf $SUDO sed -i "s/@DNS1@/$piholeDNS1/" /etc/dnsmasq.d/01-pihole.conf