From c9c6089cd666bc690ca3db3f9f859cfe1e60d9d6 Mon Sep 17 00:00:00 2001 From: GoliathLabs Date: Sun, 30 Sep 2018 21:17:30 +0200 Subject: [PATCH] Use ping -6 instead of ping6 (#317) --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 1fa1c89..f49a3d9 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -211,7 +211,7 @@ function installQuestions () { echo "" echo "Checking for IPv6 connectivity..." 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." SUGGESTION="y" else