From ef8d5d7030e8b52011e2cca6492ea13cbd4c80a0 Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Mon, 21 Mar 2022 22:36:56 +0100 Subject: [PATCH] vagrant: Set mount options for NFS NFS is the default (and well tested) mount type for vagrant-libvirt. Howver, to make it work, it nneeds the vers=3,tcp options to be provided. Signed-off-by: Michal Rostecki --- Vagrantfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index a975a01bc1..9d5d70e601 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -40,7 +40,11 @@ Vagrant.configure("2") do |config| if Vagrant.has_plugin?("vagrant-timezone") config.timezone.value = :host end - config.vm.synced_folder HOME, HOME, type: MOUNT_TYPE + if "#{MOUNT_TYPE}" == "nfs" + config.vm.synced_folder HOME, HOME, type: "nfs", mount_options: ["vers=3,tcp"] + else + config.vm.synced_folder HOME, HOME, type: MOUNT_TYPE + end if NUM_NODES==0 provision(config.vm, 0)