From 04102aac8e816f53f5c045305c94a84c43e13f89 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sun, 6 Apr 2014 21:27:44 -0300 Subject: [PATCH] Some more tweaking to generic bucket docs [GH-94] --- docs/buckets/generic.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/buckets/generic.md b/docs/buckets/generic.md index 10d604a..1b158b0 100644 --- a/docs/buckets/generic.md +++ b/docs/buckets/generic.md @@ -22,7 +22,8 @@ Vagrant.configure("2") do |config| end ``` -In this case you get two buckets called "generic-one" and "generic-two". +In this case you get two buckets called "generic-one" and "generic-two" under guest's +`/tmp/vagrant-cache`. 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 @@ -30,7 +31,7 @@ hand. For instance, if you want to cache your wget downloads under ```ruby Vagrant.configure("2") do |config| - config.cache.enable :generic, { :name => wget, :cache_dir => "/var/cache/wget" } + config.cache.enable :generic, { :name => "wget", :cache_dir => "/var/cache/wget" } end ```