From 82e78fb6518b47e81f22ee8022677288b70513f5 Mon Sep 17 00:00:00 2001 From: Promofaux Date: Sun, 23 Oct 2016 19:44:40 +0100 Subject: [PATCH] Add output to `pihole disable` and `pihole enable` --- pihole | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pihole b/pihole index 0f0e67c1..6346f32d 100755 --- a/pihole +++ b/pihole @@ -118,8 +118,10 @@ piholeEnable() { if [[ "${1}" == "0" ]] ; then #Disable Pihole sed -i 's/^addn-hosts/#addn-hosts/' /etc/dnsmasq.d/01-pihole.conf + echo "::: Blocking has been disabled!" else #Enable pihole + echo "::: Blocking has been enabled!" sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf fi restartDNS @@ -131,14 +133,14 @@ piholeStatus() { if [[ "${1}" == "web" ]] ; then echo 0; else - echo "::: Pi-hole is Disabled"; + echo "::: Pi-hole blocking 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 "::: Pi-hole is Enabled"; + echo "::: Pi-hole blocking is Enabled"; fi else #addn-host not found