From c052fbf28d1d6b8fbd8df9c8ea54a4ce9e5ebb08 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Thu, 12 Mar 2015 14:05:13 +0000 Subject: [PATCH 1/1] Add Vagrant cachier plugin support if available --- Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 1986dd1d9..c087c0cf4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,6 +5,11 @@ Vagrant.configure("2") do |config| config.vm.box = "precise64" config.vm.box_url = "http://files.vagrantup.com/precise64.box" + if Vagrant.has_plugin?("vagrant-cachier") + config.cache.enable :apt + config.cache.scope = :box + end + # port forward for webrick on 3000 config.vm.network :forwarded_port, :guest => 3000, :host => 3000 -- 2.43.2