From e199f6db87881ac062a4e31d78a6ba1b3e31841b Mon Sep 17 00:00:00 2001 From: tuplink Date: Thu, 20 Oct 2016 21:15:11 -0400 Subject: [PATCH] spelling updates --- pihole | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pihole b/pihole index 1c7d11e3..fa5a95f0 100755 --- a/pihole +++ b/pihole @@ -132,21 +132,21 @@ piholeStatus() { if [[ "${1}" == "web" ]] ; then echo 0; else - echo "::: pihole is Disabled"; + echo "::: Pi-hole is Disabled"; fi elif [[ $(cat /etc/dnsmasq.d/01-pihole.conf | grep "addn-hosts=/") ]] ; then #list set if [[ "${1}" == "web" ]] ; then echo 1; else - echo "::: pihole is Enabled"; + echo "::: Pi-hole is Enabled"; fi else #addn-host not found if [[ "${1}" == "web" ]] ; then echo 99 else - echo "::: no hosts file linked to dnsmasq, adding it in enabled state" + echo "::: No hosts file linked to dnsmasq, adding it in enabled state" fi #add addn-host= to dnsmasq echo "addn-hosts=/etc/pihole/gravity.list" >> /etc/dnsmasq.d/01-pihole.conf