2019-04-02 20:53:19 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-04-02 03:46:20 +08:00
|
|
|
vagrant box remove --provider libvirt --box-version 1905.1 centos/8 || true
|
|
|
|
vagrant box add --provider libvirt --name centos/8 https://cloud.centos.org/centos/8/vagrant/x86_64/images/CentOS-8-Vagrant-8.1.1911-20200113.3.x86_64.vagrant-libvirt.box || true
|
|
|
|
|
2019-04-02 20:53:19 +08:00
|
|
|
retries=0
|
|
|
|
until [ $retries -ge 5 ]
|
|
|
|
do
|
|
|
|
echo "Attempting to start VMs. Attempts: $retries"
|
2019-10-17 21:37:31 +08:00
|
|
|
timeout 10m time vagrant up "$@" && break
|
2019-04-02 20:53:19 +08:00
|
|
|
retries=$[$retries+1]
|
|
|
|
sleep 5
|
|
|
|
done
|
|
|
|
|
|
|
|
sleep 10
|