Remove apt update from Vagrantfile

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

Change-Id: I8be478919ca2ba94bf5652401f94e22e2b7d10d9
This commit is contained in:
Travis Truman 2016-08-19 15:13:08 -04:00
parent e16a531220
commit ced1bb6ab2
1 changed files with 0 additions and 2 deletions

2
Vagrantfile vendored
View File

@ -11,7 +11,6 @@ Vagrant.configure(2) do |config|
trusty.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get update
./run_tests.sh
SHELL
end
@ -25,7 +24,6 @@ Vagrant.configure(2) do |config|
xenial.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get update
./run_tests.sh
SHELL
end