From 42b6e99ada69dbf4fe9b0efe3609c44303fd07e8 Mon Sep 17 00:00:00 2001 From: pucherot Date: Tue, 26 Jan 2021 15:09:52 +0100 Subject: [PATCH] Update pialert_install.sh --- install/pialert_install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/pialert_install.sh b/install/pialert_install.sh index 2a055bb7..d03362b8 100644 --- a/install/pialert_install.sh +++ b/install/pialert_install.sh @@ -99,6 +99,7 @@ main() { # Ask config questions # ------------------------------------------------------------------------------ ask_config() { + set +e # Ask Pi-hole Installation PIHOLE_ACTIVE=false if [ -e /usr/local/bin/pihole ] || [ -e /etc/pihole ]; then @@ -218,6 +219,8 @@ ask_config() { ask_input "" "URL to update DDNS IP:" "https://api.dynu.com/nic/update?" DDNS_UPDATE_URL=$ANSWER fi + + set -e } # ------------------------------------------------------------------------------