Grep should start at the beginning of line to make sure it doesn't fire on `#` beginning lines.

This commit is contained in:
Dan Schaper 2016-11-02 09:25:32 -07:00
parent b636c1e1f8
commit fe18d69b65
1 changed files with 1 additions and 1 deletions

2
pihole
View File

@ -154,7 +154,7 @@ piholeStatus() {
else
echo "::: Pi-hole blocking is Disabled";
fi
elif [[ $(cat /etc/dnsmasq.d/01-pihole.conf | grep "addn-hosts=/") ]] ; then
elif [[ $(cat /etc/dnsmasq.d/01-pihole.conf | grep "^addn-hosts=/") ]] ; then
#list set
if [[ "${1}" == "web" ]] ; then
echo 1;