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

Change-Id: I8b419eea1e60210242fe8d382caee8b2880a9f42
2016-08-19 15:24:06 -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