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

Change-Id: I97b37683ed6843e0a9af64dcd990f7e8d6adcada
2016-08-19 15:40:40 -04:00

13 lines
260 B
Ruby

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