diff options
author | Tomas Alexy <tomas.alexy@pantheon.tech> | 2020-08-28 15:34:54 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2020-09-04 05:55:15 +0000 |
commit | 04df3394c9b69c22fcbdb993566e548cec58a492 (patch) | |
tree | 75e814840c0795d096f836d858f06c629dc8c3a6 /resources/tools/vagrant/Vagrantfile | |
parent | cfc2e75640a44fcf0f70a8c9b6d95dffb9b5c9c8 (diff) |
Fix local CSIT deployment
Change-Id: I6ccf3cc11b4343ebcf02f30a01eddb9204ba53ee
Signed-off-by: Tomas Alexy <tomas.alexy@pantheon.tech>
Diffstat (limited to 'resources/tools/vagrant/Vagrantfile')
-rw-r--r-- | resources/tools/vagrant/Vagrantfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/tools/vagrant/Vagrantfile b/resources/tools/vagrant/Vagrantfile index 3771fea7cb..1c3071931c 100644 --- a/resources/tools/vagrant/Vagrantfile +++ b/resources/tools/vagrant/Vagrantfile @@ -85,9 +85,9 @@ Vagrant.configure("2") do |config| config.vm.define "centos8", autostart: false do |centos8| # Base box definition, currently using - # Unofficial Centos8 (as currently there is no offical build) - centos8.vm.box = "geerlingguy/centos8" - centos8.vm.box_version = "1.0.2" + # Official CentOS8 v1905.1 + centos8.vm.box = "centos/8" + centos8.vm.box_version = "1905.1" centos8.vm.box_check_update = false # Virtualbox machine configuration |