Grep -i instead of cat.

pull/890/head
Dan Schaper 8 years ago
parent fe18d69b65
commit e42a037b7d

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

Loading…
Cancel
Save