Remove apt update from Vagrantfile

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

Change-Id: I9d0eb2330956be2061d835ddd7201e8913b7d599
This commit is contained in:
Travis Truman 2016-08-19 15:58:21 -04:00
parent f321c7f3b7
commit 18f8e25ee0
1 changed files with 8 additions and 0 deletions

8
Vagrantfile vendored Normal file
View File

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