fix NFS mount in BSD VM

This commit is contained in:
Jorge Morante 2018-03-11 00:21:51 +01:00
parent 80d4cab555
commit d81531659b
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -10,7 +10,7 @@ Vagrant.configure(2) do |config|
machine.vm.base_mac = "080027D14C66"
machine.vm.network "private_network", ip: "10.0.1.10", mac: "5CA1AB1E0001"
machine.vm.synced_folder ".", "/home/vagrant/shared", :nfs => true
machine.vm.synced_folder ".", "/home/vagrant/shared", nfs: true, nfs_udp: false
machine.vm.provision "shell", path: './test/provisioning/bsd.sh'
end