diff --git a/_layouts/documentation.html b/_layouts/documentation.html index 55abd090d..9d52d6d6b 100644 --- a/_layouts/documentation.html +++ b/_layouts/documentation.html @@ -8,6 +8,7 @@
+ You can also mix together host and VM cookbook paths. This allows + you to use some cookbooks from a remote location, and some from a + local directory. An example of this is shown below: + +{% highlight ruby %} +Vagrant::Config.run do |config| + config.chef.cookbooks_path = ["local-cookbooks", [:vm, "cookbooks"]] +end +{% endhighlight %} +
+