Browse Source

Update debian-install.sh

tteckster 2 years ago
parent
commit
6eff2a95b4
1 changed files with 3 additions and 4 deletions
  1. 3 4
      setup/debian-install.sh

+ 3 - 4
setup/debian-install.sh

@@ -58,10 +58,9 @@ done
 msg_ok "Set up Container OS"
 msg_ok "Set up Container OS"
 msg_ok "Network Connected: ${BL}$(hostname -I)"
 msg_ok "Network Connected: ${BL}$(hostname -I)"
 
 
-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
+if nc -zw1 8.8.8.8 443; then  msg_ok "Internet Connected"; else  msg_error "Internet NOT Connected"; exit 1; 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"
 msg_info "Updating Container OS"
 apt-get update &>/dev/null
 apt-get update &>/dev/null