Make sure people know that synced_folder_opts are optional

I came across a blog post somewhere saying that this was required but I
can't find the link right now.
This commit is contained in:
Fabio Rehm 2014-06-23 18:01:00 -03:00
parent 5598824558
commit bbd1e9c901
2 changed files with 6 additions and 6 deletions

View file

@ -27,9 +27,9 @@ Vagrant.configure("2") do |config|
# More info on http://fgrehm.viewdocs.io/vagrant-cachier/usage
config.cache.scope = :box
# If you are using VirtualBox, you might want to use that to enable NFS for
# shared folders. This is also very useful for vagrant-libvirt if you want
# bi-directional sync
# OPTIONAL: If you are using VirtualBox, you might want to use that to enable
# NFS for shared folders. This is also very useful for vagrant-libvirt if you
# want bi-directional sync
config.cache.synced_folder_opts = {
type: :nfs,
# The nolock option can be useful for an NFSv3 client that wants to avoid the

View file

@ -28,9 +28,9 @@ Vagrant.configure("2") do |config|
# More info on the "Usage" link above
config.cache.scope = :box
# If you are using VirtualBox, you might want to use that to enable NFS for
# shared folders. This is also very useful for vagrant-libvirt if you want
# bi-directional sync
# OPTIONAL: If you are using VirtualBox, you might want to use that to enable
# NFS for shared folders. This is also very useful for vagrant-libvirt if you
# want bi-directional sync
config.cache.synced_folder_opts = {
type: :nfs,
# The nolock option can be useful for an NFSv3 client that wants to avoid the