openstack-ansible-os_swift/Vagrantfile
Travis Truman a9d1b9ecac Remove apt update from Vagrantfile
Its now done in run_tests.sh which is run by the
Vagrant provisioner

Change-Id: Icc4868be0eeb329139f019068edd4eac8544509e
2016-08-19 15:43:43 -04:00

9 lines
178 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end