From b1550aed10fd3ac7695c1ecb7ed15e308cdcb7ba Mon Sep 17 00:00:00 2001 From: Brian Simpson Date: Mon, 25 Apr 2016 11:30:00 -0700 Subject: [PATCH] Vagrantfile: Use current trusty cloud image without hash verification The images change too frequently. We should work on a solution that retrieves the hash for the current image rather than hardcoding it into the Vagrantfile. --- Vagrantfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 930c646cd..b9813192a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -68,9 +68,7 @@ hostname = "reddit.local" Vagrant.configure(2) do |config| config.vm.box = "trusty-cloud-image" - config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/20160323/trusty-server-cloudimg-amd64-vagrant-disk1.box" - config.vm.box_download_checksum = "bb5024fb519ab548f47fbd428d59570e8140598fcb61abe5549bc1b70ab59111" - config.vm.box_download_checksum_type = "sha256" + config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" # mount the host shared folder config.vm.synced_folder code_share_host_path, code_share_guest_path, mount_options: ["ro"]