Fix usage examples

This commit is contained in:
Teemu Matilainen 2014-02-05 18:01:30 -03:00 committed by Fabio Rehm
parent ea88562145
commit a8f05e4b11
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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
```