Add Vagrant cachier plugin support if available

This commit is contained in:
Grant Slater 2015-03-12 14:05:13 +00:00
parent 88f8544d8c
commit c052fbf28d

5
Vagrantfile vendored
View 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