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

Change-Id: I454f91c818ae97bcb892bdfd24daa95a0a0cbb62
2016-08-19 15:16:31 -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