From 740cb53aebed456cfb772c2764852dd1828b4e87 Mon Sep 17 00:00:00 2001 From: Mike Barnes Date: Wed, 12 Nov 2025 21:40:52 +1100 Subject: [PATCH] Fix Vagrantfile NFS --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 0a3436702..1bfd05786 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -173,7 +173,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end if config.vm.networks.any? { |type, options| type == :private_network } - config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'actimeo=1'] + config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'actimeo=1'], nfs_udp: false else config.vm.synced_folder ".", "/vagrant", type: "rsync", create: true, rsync__args: ["--verbose", "--archive", "--delete", "-z"] end