Update install.func

update the script to include IPv6 connectivity considerations
pull/2425/head
tteckster 10 months ago committed by GitHub
parent 29e012d282
commit 72de387b5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -112,16 +112,38 @@ setting_up_container() {
network_check() { network_check() {
set +e set +e
trap - ERR trap - ERR
if ping -c 1 -W 1 1.1.1.1 &>/dev/null; then msg_ok "Internet Connected"; else # Check if IPv4 is being used
msg_error "Internet NOT Connected" if ip -o -4 addr show | grep -q "scope global"; then
read -r -p "Would you like to continue anyway? <y/N> " prompt if ping -c 1 -W 1 1.1.1.1 &>/dev/null; then
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then msg_ok "IPv4 Internet Connected";
echo -e " ⚠️ ${RD}Expect Issues Without Internet${CL}"
else else
echo -e " 🖧 Check Network Settings" msg_error "IPv4 Internet Not Connected";
exit 1 read -r -p "Would you like to continue anyway? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
echo -e " ⚠️ ${RD}Expect Issues Without Internet${CL}"
else
echo -e " 🖧 Check Network Settings"
exit 1
fi
fi fi
fi fi
# Check if IPv6 is being used
if ip -o -6 addr show | grep -q "scope global"; then
if ping6 -c 1 -W 1 2606:4700:4700::1111 &>/dev/null; then
msg_ok "IPv6 Internet Connected";
else
msg_error "IPv6 Internet Not Connected";
read -r -p "Would you like to continue anyway? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
echo -e " ⚠️ ${RD}Expect Issues Without Internet${CL}"
else
echo -e " 🖧 Check Network Settings"
exit 1
fi
fi
fi
RESOLVEDIP=$(getent hosts github.com | awk '{ print $1 }') RESOLVEDIP=$(getent hosts github.com | awk '{ print $1 }')
if [[ -z "$RESOLVEDIP" ]]; then msg_error "DNS Lookup Failure"; else msg_ok "DNS Resolved github.com to ${BL}$RESOLVEDIP${CL}"; fi if [[ -z "$RESOLVEDIP" ]]; then msg_error "DNS Lookup Failure"; else msg_ok "DNS Resolved github.com to ${BL}$RESOLVEDIP${CL}"; fi
set -e set -e

Loading…
Cancel
Save

Powered by BW's shoe-string budget.