Remove BSD-only option in ping.

parent fe3b1de9
...@@ -18,11 +18,11 @@ if [ $ONLY_SLAPFORMAT = false ]; then ...@@ -18,11 +18,11 @@ if [ $ONLY_SLAPFORMAT = false ]; then
# Check ipv4 # Check ipv4
echo "Checking IPv4 connectivity..." echo "Checking IPv4 connectivity..."
ping -c 2 -o $IPV4CHECK >/dev/null 2>&1 ping -c 2 $IPV4CHECK >/dev/null 2>&1
while [ $? != 0 ]; do while [ $? != 0 ]; do
echo "IPv4 is not ready yet." echo "IPv4 is not ready yet."
sleep 2 sleep 2
ping -c 2 -o $IPV4CHECK >/dev/null 2>&1 ping -c 2 $IPV4CHECK >/dev/null 2>&1
done done
# Launch openvpn # Launch openvpn
...@@ -33,12 +33,12 @@ if [ $ONLY_SLAPFORMAT = false ]; then ...@@ -33,12 +33,12 @@ if [ $ONLY_SLAPFORMAT = false ]; then
# Wait for ipv6 connection to be ready # Wait for ipv6 connection to be ready
echo "Checking IPv6 connectivity. This may take a few seconds..." echo "Checking IPv6 connectivity. This may take a few seconds..."
ping6 -c 2 -o $IPV6CHECK >/dev/null 2>&1 ping6 -c 2 $IPV6CHECK >/dev/null 2>&1
while [ $? != 0 ]; while [ $? != 0 ];
do do
echo "IPv6 is not ready yet." echo "IPv6 is not ready yet."
sleep 2 sleep 2
ping6 -c 2 -o $IPV6CHECK >/dev/null 2>&1 ping6 -c 2 $IPV6CHECK >/dev/null 2>&1
done done
else else
sleep 15 sleep 15
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment