@@ -12,7 +12,7 @@ Vagrant.configure(2) do |config|
1212
1313 # Every Vagrant development environment requires a box. You can search for
1414 # boxes at https://atlas.hashicorp.com/search.
15- config . vm . box = "freebsd/FreeBSD-11.1 -RELEASE"
15+ config . vm . box = "freebsd/FreeBSD-11.2 -RELEASE"
1616
1717 # Disable automatic box update checking. If you disable this, then
1818 # boxes will only be checked for updates when the user runs
@@ -38,8 +38,8 @@ Vagrant.configure(2) do |config|
3838 # the path on the host to the actual folder. The second argument is
3939 # the path on the guest to mount the folder. And the optional third
4040 # argument is a set of non-required options.
41- config . vm . synced_folder "." , "/vagrant" , nfs : true
42- config . vm . synced_folder "../.." , "/libv8" , nfs : true
41+ config . vm . synced_folder "." , "/vagrant" , nfs : true , nfs_udp : false
42+ config . vm . synced_folder "../.." , "/libv8" , nfs : true , nfs_udp : false
4343
4444
4545 # Provider-specific configuration so you can fine-tune various
@@ -64,8 +64,8 @@ Vagrant.configure(2) do |config|
6464 vb . cpus = 4
6565 vb . customize [ "modifyvm" , :id , "--hwvirtex" , "on" ]
6666 vb . customize [ "modifyvm" , :id , "--audio" , "none" ]
67- vb . customize [ "modifyvm" , :id , "--nictype1" , "virtio" ]
68- vb . customize [ "modifyvm" , :id , "--nictype2" , "virtio" ]
67+ # vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
68+ # vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
6969 end
7070
7171 # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
@@ -84,6 +84,6 @@ Vagrant.configure(2) do |config|
8484 # SHELL
8585 config . vm . provision "shell" , inline : <<-SHELL
8686 pkg upgrade -y
87- pkg install -y bash gmake ruby rubygem-bundler git-lite python2
87+ pkg install -y bash ruby rubygem-bundler git-lite python2 ninja
8888 SHELL
8989end
0 commit comments