1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Use NFS for Vagrant shared folders for FreeBSD

This commit is contained in:
Petko Bordjukov 2015-07-15 02:12:15 +03:00
parent 10e62c8069
commit 9d305e1ea0

View file

@ -39,9 +39,11 @@ Vagrant.configure(2) do |config|
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
config.vm.synced_folder ".", "/vagrant", type: :rsync
config.vm.synced_folder "../..", "/libv8", type: :rsync
#config.vm.synced_folder ".", "/vagrant", type: :rsync
#config.vm.synced_folder "../..", "/libv8", type: :rsync
config.vm.synced_folder ".", "/vagrant", nfs: true
config.vm.synced_folder "../..", "/libv8", nfs: true
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.