Minor tweaks to generic bucket docs [GH-94]
This commit is contained in:
parent
ffd6c514dd
commit
2a17bc4f1d
1 changed files with 3 additions and 3 deletions
|
@ -9,11 +9,11 @@ Vagrant.configure("2") do |config|
|
|||
end
|
||||
```
|
||||
|
||||
The :cache_dir parameter is required. It specifies the directory on the guest
|
||||
The `:cache_dir` parameter is required. It specifies the directory on the guest
|
||||
that will be cached under the "generic" bucket.
|
||||
|
||||
You may enable more than one generic bucket by giving them different names via
|
||||
the :name parameter, like this:
|
||||
the `:name` parameter, like this:
|
||||
|
||||
```ruby
|
||||
Vagrant.configure("2") do |config|
|
||||
|
@ -26,7 +26,7 @@ In this case you get two buckets called "generic-one" and "generic-two".
|
|||
|
||||
The Generic bucket is useful if you want to implement a caching mechanism by
|
||||
hand. For instance, if you want to cache your wget downloads under
|
||||
/var/cache/wget you can do this:
|
||||
`/var/cache/wget` you can do this:
|
||||
|
||||
```ruby
|
||||
Vagrant.configure("2") do |config|
|
||||
|
|
Loading…
Reference in a new issue