Simplify: no need to increase delay between pings

parent cb0017e6
...@@ -19,10 +19,7 @@ if [ $ONLY_SLAPFORMAT = false ]; then ...@@ -19,10 +19,7 @@ if [ $ONLY_SLAPFORMAT = false ]; then
# Check ipv4 # Check ipv4
ping -c 2 $IPV4CHECK ping -c 2 $IPV4CHECK
while [ $? != 0 ]; do while [ $? != 0 ]; do
sleep $(($i * 5)) sleep 10
if [[ $i -le 40 ]]; then
let i++
fi
ping -c 2 $IPV4CHECK ping -c 2 $IPV4CHECK
done done
...@@ -33,14 +30,10 @@ if [ $ONLY_SLAPFORMAT = false ]; then ...@@ -33,14 +30,10 @@ if [ $ONLY_SLAPFORMAT = false ]; then
fi fi
# Wait for ipv6 connection to be ready # Wait for ipv6 connection to be ready
i=0
ping6 -c 2 $IPV6CHECK ping6 -c 2 $IPV6CHECK
while [ $? != 0 ]; while [ $? != 0 ];
do do
sleep $(($i * 10)) sleep 10
if [[ $i -le 40 ]]; then
let i++
fi
ping6 -c 2 $IPV6CHECK ping6 -c 2 $IPV6CHECK
done done
else else
......
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