1
1
mirror of https://github.com/namibia/openvpn-install.git synced 2025-01-03 11:47:21 +00:00

Use ping -6 instead of ping6 (#317)

This commit is contained in:
GoliathLabs 2018-09-30 21:17:30 +02:00 committed by Stanislas
parent 83b3cd0770
commit c9c6089cd6

View File

@ -211,7 +211,7 @@ function installQuestions () {
echo "" echo ""
echo "Checking for IPv6 connectivity..." echo "Checking for IPv6 connectivity..."
echo "" echo ""
if ping6 -c4 ipv6.google.com > /dev/null 2>&1; then if ping -6 -c4 ipv6.google.com > /dev/null 2>&1; then
echo "Your host appears to have IPv6 connectivity." echo "Your host appears to have IPv6 connectivity."
SUGGESTION="y" SUGGESTION="y"
else else