From 1779aab46096a1134903ed4eaf65f8679b106cf6 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 30 Aug 2022 15:37:13 -0400 Subject: [PATCH] Update debian-install.sh --- setup/debian-install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup/debian-install.sh b/setup/debian-install.sh index 48b5b4c8..90b25b47 100644 --- a/setup/debian-install.sh +++ b/setup/debian-install.sh @@ -58,9 +58,10 @@ done msg_ok "Set up Container OS" msg_ok "Network Connected: ${BL}$(hostname -I)" -if nc -zw1 8.8.8.8 443; then msg_ok "Internet Connected"; else msg_error "Internet NOT Connected"; 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; +if nc -zw1 8.8.8.8 443; then msg_ok "Internet Connected"; IC="YES"; else msg_error "Internet NOT Connected"; IC="NO"; fi; +if [[ ${IC} == "YES" ]]; then 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; +fi msg_info "Updating Container OS" apt-get update &>/dev/null