From e6fa32fc34afdd86425177753d996a3a546355eb Mon Sep 17 00:00:00 2001
From: tteckster <tteckster@gmail.com>
Date: Mon, 29 Aug 2022 21:28:05 -0400
Subject: [PATCH] Update ubuntu-install.sh

---
 setup/ubuntu-install.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup/ubuntu-install.sh b/setup/ubuntu-install.sh
index 55469d7a7..d3c93401b 100644
--- a/setup/ubuntu-install.sh
+++ b/setup/ubuntu-install.sh
@@ -60,8 +60,8 @@ 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 "google.com" | awk -F':' '/^Address: / { matched = 1 } matched { print $2}' | xargs)
-if [[ -z "$RESOLVEDIP" ]]; then msg_error "DNS Lookup Failure";  else msg_ok "DNS Resolved to $RESOLVEDIP";  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;
 
 msg_info "Updating Container OS"
 apt-get update &>/dev/null