+ Fix indentation
+ Stick with case, add "On" to provide INFO print out, although its not
technically required as INSTALL_WEB_SERVER=true is default value.
pull/2115/head
Daniel (Fourdee) 6 years ago
parent c2c1dc7469
commit eccea8a911

@ -974,15 +974,20 @@ setAdminFlag() {
WebChooseOptions=("On (Recommended)" "" on WebChooseOptions=("On (Recommended)" "" on
Off "" off) Off "" off)
WebChoices=$("${WebToggleCommand[@]}" "${WebChooseOptions[@]}" 2>&1 >/dev/tty) || (echo -e " ${COL_LIGHT_RED}Cancel was selected, exiting installer${COL_NC}" && exit 1) WebChoices=$("${WebToggleCommand[@]}" "${WebChooseOptions[@]}" 2>&1 >/dev/tty) || (echo -e " ${COL_LIGHT_RED}Cancel was selected, exiting installer${COL_NC}" && exit 1)
# Depending on their choice # Depending on their choice
case ${WebChoices} in case ${WebChoices} in
Off) "On (Recommended)")
echo -e " ${INFO} Web Server Off" echo -e " ${INFO} Web Server On"
# or false # set it to true, as clearly seen below.
INSTALL_WEB_SERVER=false INSTALL_WEB_SERVER=true
;; ;;
esac Off)
fi echo -e " ${INFO} Web Server Off"
# or false
INSTALL_WEB_SERVER=false
;;
esac
fi
} }
# Check if /etc/dnsmasq.conf is from pi-hole. If so replace with an original and install new in .d directory # Check if /etc/dnsmasq.conf is from pi-hole. If so replace with an original and install new in .d directory

Loading…
Cancel
Save