Adds chef file_cache_path to README.

This commit is contained in:
Patrick Connolly 2013-07-22 12:14:11 -04:00
parent 82295481db
commit 2a7b150fbc

View file

@ -168,6 +168,18 @@ end
Used by Arch Linux, will get configured under guest's `/var/cache/pacman/pkg`. Used by Arch Linux, will get configured under guest's `/var/cache/pacman/pkg`.
#### Chef
```ruby
Vagrant.configure("2") do |config|
config.vm.box = 'some-box-using-chef-provisioner'
config.cache.enable :chef
end
```
When a Chef provisioner is detected, this bucket caches the default
`file_cache_path` directory, `/var/chef/cache`. Requires Vagrant 1.2.4+.
#### RubyGems #### RubyGems
```ruby ```ruby
@ -183,7 +195,6 @@ folder under the result of running `gem env gemdir` as the default SSH user (usu
it is already installed before enabling the bucket, otherwise you won't benefit it is already installed before enabling the bucket, otherwise you won't benefit
from this plugin. from this plugin.
#### RVM #### RVM
```ruby ```ruby