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:
parent
5598824558
commit
bbd1e9c901
2 changed files with 6 additions and 6 deletions
|
@ -27,9 +27,9 @@ Vagrant.configure("2") do |config|
|
||||||
# More info on http://fgrehm.viewdocs.io/vagrant-cachier/usage
|
# More info on http://fgrehm.viewdocs.io/vagrant-cachier/usage
|
||||||
config.cache.scope = :box
|
config.cache.scope = :box
|
||||||
|
|
||||||
# If you are using VirtualBox, you might want to use that to enable NFS for
|
# OPTIONAL: If you are using VirtualBox, you might want to use that to enable
|
||||||
# shared folders. This is also very useful for vagrant-libvirt if you want
|
# NFS for shared folders. This is also very useful for vagrant-libvirt if you
|
||||||
# bi-directional sync
|
# want bi-directional sync
|
||||||
config.cache.synced_folder_opts = {
|
config.cache.synced_folder_opts = {
|
||||||
type: :nfs,
|
type: :nfs,
|
||||||
# The nolock option can be useful for an NFSv3 client that wants to avoid the
|
# The nolock option can be useful for an NFSv3 client that wants to avoid the
|
||||||
|
|
|
@ -28,9 +28,9 @@ Vagrant.configure("2") do |config|
|
||||||
# More info on the "Usage" link above
|
# More info on the "Usage" link above
|
||||||
config.cache.scope = :box
|
config.cache.scope = :box
|
||||||
|
|
||||||
# If you are using VirtualBox, you might want to use that to enable NFS for
|
# OPTIONAL: If you are using VirtualBox, you might want to use that to enable
|
||||||
# shared folders. This is also very useful for vagrant-libvirt if you want
|
# NFS for shared folders. This is also very useful for vagrant-libvirt if you
|
||||||
# bi-directional sync
|
# want bi-directional sync
|
||||||
config.cache.synced_folder_opts = {
|
config.cache.synced_folder_opts = {
|
||||||
type: :nfs,
|
type: :nfs,
|
||||||
# The nolock option can be useful for an NFSv3 client that wants to avoid the
|
# The nolock option can be useful for an NFSv3 client that wants to avoid the
|
||||||
|
|
Loading…
Reference in a new issue