From: Grant Slater Date: Thu, 12 Mar 2015 14:05:13 +0000 (+0000) Subject: Add Vagrant cachier plugin support if available X-Git-Tag: live~4174 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/c052fbf28d1d6b8fbd8df9c8ea54a4ce9e5ebb08?hp=88f8544d8cbf8ef099a5df9be85dcbcec300a013;ds=sidebyside Add Vagrant cachier plugin support if available --- 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