mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 14:58:08 +00:00
Add output to pihole disable
and pihole enable
This commit is contained in:
parent
d0826b2c33
commit
82e78fb651
6
pihole
6
pihole
@ -118,8 +118,10 @@ piholeEnable() {
|
|||||||
if [[ "${1}" == "0" ]] ; then
|
if [[ "${1}" == "0" ]] ; then
|
||||||
#Disable Pihole
|
#Disable Pihole
|
||||||
sed -i 's/^addn-hosts/#addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
sed -i 's/^addn-hosts/#addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
||||||
|
echo "::: Blocking has been disabled!"
|
||||||
else
|
else
|
||||||
#Enable pihole
|
#Enable pihole
|
||||||
|
echo "::: Blocking has been enabled!"
|
||||||
sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
||||||
fi
|
fi
|
||||||
restartDNS
|
restartDNS
|
||||||
@ -131,14 +133,14 @@ piholeStatus() {
|
|||||||
if [[ "${1}" == "web" ]] ; then
|
if [[ "${1}" == "web" ]] ; then
|
||||||
echo 0;
|
echo 0;
|
||||||
else
|
else
|
||||||
echo "::: Pi-hole is Disabled";
|
echo "::: Pi-hole blocking is Disabled";
|
||||||
fi
|
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
|
#list set
|
||||||
if [[ "${1}" == "web" ]] ; then
|
if [[ "${1}" == "web" ]] ; then
|
||||||
echo 1;
|
echo 1;
|
||||||
else
|
else
|
||||||
echo "::: Pi-hole is Enabled";
|
echo "::: Pi-hole blocking is Enabled";
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
#addn-host not found
|
#addn-host not found
|
||||||
|
Loading…
Reference in New Issue
Block a user