From 5b03b47ee61d7634c4b5d900811c653c046f8d4e Mon Sep 17 00:00:00 2001 From: tteckster Date: Thu, 22 Dec 2022 09:19:47 -0500 Subject: [PATCH] Update magicmirror-install.sh (#857) (#858) Change connection prompt to allow bypass Co-authored-by: ThellraAK --- setup/magicmirror-install.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup/magicmirror-install.sh b/setup/magicmirror-install.sh index e252fea4..1017de12 100644 --- a/setup/magicmirror-install.sh +++ b/setup/magicmirror-install.sh @@ -61,8 +61,14 @@ msg_ok "Network Connected: ${BL}$(hostname -I)" set +e alias die='' if nc -zw1 8.8.8.8 443; then msg_ok "Internet Connected"; else - msg_error "Internet NOT Connected" - exit 1 + msg_error "Internet NOT Connected" + read -r -p "Would you like to continue anyway? " prompt + if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then + echo -e " ⚠️ ${RD}Expect Issues Without Internet${CL}" + else + echo -e " 🖧 Check Network Settings" + exit 1 + fi fi RESOLVEDIP=$(nslookup "github.com" | awk -F':' '/^Address: / { matched = 1 } matched { print $2}' | xargs) if [[ -z "$RESOLVEDIP" ]]; then msg_error "DNS Lookup Failure"; else msg_ok "DNS Resolved github.com to $RESOLVEDIP"; fi