mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-02-24 12:08:16 +00:00
Merge pull request #1051 from pi-hole/fix/status
Test if DNS service is listening on local port 53 when reporting status
This commit is contained in:
commit
18d1c98f08
1 changed files with 13 additions and 0 deletions
13
pihole
13
pihole
|
@ -185,6 +185,19 @@ piholeLogging() {
|
||||||
}
|
}
|
||||||
|
|
||||||
piholeStatus() {
|
piholeStatus() {
|
||||||
|
if [[ $(netstat -plnt | grep -c ':53 ') > 0 ]]; then
|
||||||
|
if [[ "${1}" != "web" ]] ; then
|
||||||
|
echo "::: DNS service is running"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "${1}" == "web" ]] ; then
|
||||||
|
echo "-1";
|
||||||
|
else
|
||||||
|
echo "::: DNS service is NOT running"
|
||||||
|
fi
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ $(grep -i "^#addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue