Fix usage examples
This commit is contained in:
parent
c494876ac1
commit
dd549717e5
3 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@ Vagrant.configure("2") do |config|
|
|||
# NLM sideband protocol. Without this option, apt-get might hang if it tries
|
||||
# to lock files needed for /var/cache/* operations. All of this can be avoided
|
||||
# by using NFSv4 everywhere. Please note that the tcp option is not the default.
|
||||
mount_options = ['rw', 'vers=3', 'tcp', 'nolock']
|
||||
mount_options: ['rw', 'vers=3', 'tcp', 'nolock']
|
||||
}
|
||||
# For more information please check http://docs.vagrantup.com/v2/synced-folders/basic_usage.html
|
||||
end
|
||||
|
|
|
@ -40,7 +40,7 @@ Vagrant.configure("2") do |config|
|
|||
# NLM sideband protocol. Without this option, apt-get might hang if it tries
|
||||
# to lock files needed for /var/cache/* operations. All of this can be avoided
|
||||
# by using NFSv4 everywhere. Please note that the tcp option is not the default.
|
||||
mount_options = ['rw', 'vers=3', 'tcp', 'nolock']
|
||||
mount_options: ['rw', 'vers=3', 'tcp', 'nolock']
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -49,7 +49,7 @@ Vagrant.configure("2") do |config|
|
|||
# NLM sideband protocol. Without this option, apt-get might hang if it tries
|
||||
# to lock files needed for /var/cache/* operations. All of this can be avoided
|
||||
# by using NFSv4 everywhere. Please note that the tcp option is not the default.
|
||||
mount_options = ['rw', 'vers=3', 'tcp', 'nolock']
|
||||
mount_options: ['rw', 'vers=3', 'tcp', 'nolock']
|
||||
}
|
||||
end
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue