mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-02-16 16:34:07 +00:00
Avoid printing getFTLConfigValue return in statusFunc()
Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
parent
ed0dfa8b77
commit
2c7fa4a7b3
1 changed files with 3 additions and 2 deletions
5
pihole
5
pihole
|
@ -345,7 +345,7 @@ analyze_ports() {
|
||||||
|
|
||||||
statusFunc() {
|
statusFunc() {
|
||||||
# Determine if there is pihole-FTL service is listening
|
# Determine if there is pihole-FTL service is listening
|
||||||
local pid port ftl_pid_file
|
local pid port ftl_pid_file block_status
|
||||||
|
|
||||||
ftl_pid_file="$(getFTLPIDFile)"
|
ftl_pid_file="$(getFTLPIDFile)"
|
||||||
|
|
||||||
|
@ -375,7 +375,8 @@ statusFunc() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Determine if Pi-hole's blocking is enabled
|
# Determine if Pi-hole's blocking is enabled
|
||||||
if getFTLConfigValue dns.blocking.active; then
|
block_status=$(getFTLConfigValue dns.blocking.active)
|
||||||
|
if [ ${block_status} == "true" ]; then
|
||||||
case "${1}" in
|
case "${1}" in
|
||||||
"web") echo "$port";;
|
"web") echo "$port";;
|
||||||
*) echo -e " ${TICK} Pi-hole blocking is enabled";;
|
*) echo -e " ${TICK} Pi-hole blocking is enabled";;
|
||||||
|
|
Loading…
Add table
Reference in a new issue