mirror of https://github.com/ceph/ceph-ansible.git
12 lines
191 B
Bash
12 lines
191 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
retries=0
|
||
|
until [ $retries -ge 5 ]
|
||
|
do
|
||
|
echo "Attempting to start VMs. Attempts: $retries"
|
||
|
timeout 10m vagrant up "$@" && break
|
||
|
retries=$[$retries+1]
|
||
|
sleep 5
|
||
|
done
|
||
|
|
||
|
sleep 10
|