Improve vagrant up time by skipping (possibly) unneeded updates.

Signed-off-by: David Manouchehri <david.manouchehri@riseup.net>
This commit is contained in:
David Manouchehri 2017-11-29 21:58:18 -05:00
parent bb73dab8d3
commit 899d62352e
No known key found for this signature in database
GPG Key ID: 44AE189680F871D2

6
Vagrantfile vendored
View File

@ -8,10 +8,10 @@ Vagrant.configure("2") do |config|
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.provision "shell", inline: <<-SHELL
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
# apt-get update
# DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
snap install --classic go
apt-get clean
# apt-get clean
SHELL
config.vm.provision "docker"