Remove apt update from Vagrantfile

Its now done in run_tests.sh which is run by the
Vagrant provisioner

Change-Id: I13696c7adc57f25bb4ac251d66163fcc49ad75d1
This commit is contained in:
Travis Truman 2016-08-19 15:13:55 -04:00
parent a3a365617c
commit 0c1f165965
1 changed files with 12 additions and 0 deletions

12
Vagrantfile vendored Normal file
View File

@ -0,0 +1,12 @@
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