Merge pull request #2501 from pi-hole/fix/restart-dns-error-on-success

Fix restartDNS returning code 1 even when it worked
This commit is contained in:
Dan Schaper 2018-11-10 10:10:49 -08:00 committed by GitHub
commit 35e53ab9c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
pihole
View file

@ -134,9 +134,11 @@ restartDNS() {
if [[ "${status}" -eq 0 ]]; then if [[ "${status}" -eq 0 ]]; then
[[ -t 1 ]] && echo -e "${OVER} ${TICK} ${str}" [[ -t 1 ]] && echo -e "${OVER} ${TICK} ${str}"
return 0
else else
[[ ! -t 1 ]] && local OVER="" [[ ! -t 1 ]] && local OVER=""
echo -e "${OVER} ${CROSS} ${output}" echo -e "${OVER} ${CROSS} ${output}"
return 1
fi fi
} }