]> git.openstreetmap.org Git - rails.git/commitdiff
Add Vagrant cachier plugin support if available
authorGrant Slater <grant.slater@wearefriday.com>
Thu, 12 Mar 2015 14:05:13 +0000 (14:05 +0000)
committerGrant Slater <grant.slater@wearefriday.com>
Thu, 12 Mar 2015 14:05:13 +0000 (14:05 +0000)
Vagrantfile

index 1986dd1d9da336bf1671a30e7013a258bbafe852..c087c0cf40cf046a820c4663971d569e1a65003f 100644 (file)
@@ -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