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:
parent
10e62c8069
commit
9d305e1ea0
1 changed files with 5 additions and 3 deletions
8
release/x86_64-freebsd10/Vagrantfile
vendored
8
release/x86_64-freebsd10/Vagrantfile
vendored
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue