1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-18 06:08:21 +00:00

change restartdnsmasq to restartdns

This commit is contained in:
Tommy Huff 2016-10-20 09:40:45 -04:00
parent dda448e050
commit 3ca3eaa62c
2 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ gravity_reload() {
# sed -i "s/^addn-hosts.*/addn-hosts=$adList/" /etc/dnsmasq.d/01-pihole.conf
find "$piholeDir" -type f -exec chmod 666 {} \;
pihole restartdnsmasq
pihole restartdns
}
for var in "$@"

4
pihole
View File

@ -165,7 +165,7 @@ helpFunc() {
echo "::: status Is Pi-Hole Enabled or Disabled"
echo "::: enable Enable Pi-Hole DNS Blocking"
echo "::: disable Disable Pi-Hole DNS Blocking"
echo "::: restartdnsmasq Restart dnsmasq"
echo "::: restartdns Restart dnsmasq"
exit 0
}
@ -191,7 +191,7 @@ case "$1" in
"enable" ) piholeEnable 1;;
"disable" ) piholeEnable 0;;
"status" ) piholeStatus "$2";;
"restartdnsmasq" ) restartDNS;;
"restartdns" ) restartDNS;;
* ) helpFunc;;
esac