mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 15:13:42 +00:00
Fix typo in Failed response
This commit is contained in:
parent
ca66849876
commit
cde2993a33
1 changed files with 3 additions and 3 deletions
|
@ -68,7 +68,7 @@ do
|
|||
elif [[ "$status" == "RFC1918" ]]; then
|
||||
echo -e "\tFailed - $name resolves to a non-routable address ($ip)"
|
||||
elif [[ "$status" == "empty" ]]; then
|
||||
echo -e"\tFailed - $name could not be resolved ($ip)"
|
||||
echo -e "\tFailed - $name could not be resolved ($ip)"
|
||||
else
|
||||
echo -e "\tSuccess - $name resolves to a public IP address ($ip)"
|
||||
fi
|
||||
|
@ -84,7 +84,7 @@ do
|
|||
elif [[ "$status" == "RFC1918" ]]; then
|
||||
echo -e "\tFailed - $name resolves to a non-routable address ($ip)"
|
||||
elif [[ "$status" == "empty" ]]; then
|
||||
echo -e"\tFailed - $name could not be resolved ($ip)"
|
||||
echo -e "\tFailed - $name could not be resolved ($ip)"
|
||||
else
|
||||
echo -e "\tSuccess - $name resolves to a public IP address ($ip)"
|
||||
fi
|
||||
|
@ -100,7 +100,7 @@ do
|
|||
elif [[ "$status" == "RFC1918" ]]; then
|
||||
echo -e "\tVerify - $name resolves to a non-routable address that is not your pi-hole server ($ip)"
|
||||
elif [[ "$status" == "empty" ]]; then
|
||||
echo -e"\tFailed - $name could not be resolved ($ip)"
|
||||
echo -e "\tFailed - $name could not be resolved ($ip)"
|
||||
else
|
||||
echo -e "\tFailed - $name resolves to a public IP address ($ip)"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue