summaryrefslogtreecommitdiffstats
path: root/src/ceph-volume/ceph_volume/tests/functional/scripts/vagrant_up.sh
blob: 8f4cd3bca9ba0c73a3d5056154f5d76ffab46347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

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