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

Change-Id: I0ad73223832b5ada0d0e75e911bddb5871610725
2016-08-19 15:15:47 -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