Add Vagrant cachier plugin support if available
This commit is contained in:
parent
88f8544d8c
commit
c052fbf28d
1 changed files with 5 additions and 0 deletions
5
Vagrantfile
vendored
5
Vagrantfile
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue