From 9f1bec85fd29e358ebbbccfd1406262857c658a1 Mon Sep 17 00:00:00 2001 From: Todd Malsbary Date: Wed, 26 Jan 2022 14:37:47 -0800 Subject: [PATCH] Require nfs synced folder in Vagrantfile When nfs is not installed the host, vagrant will fallback to rsync and not pick up the changes to user_config.sh. Signed-off-by: Todd Malsbary Change-Id: Ia30b6b44a986c5fe645da9927685aef73f2f19e0 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 8ab75ed..ced84ef 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -65,7 +65,7 @@ Vagrant.configure("2") do |config| # Note the apparent typo in the name below, it is correct as-is m.vm.box = 'intergratedcloudnative/ubuntu2004' m.vm.hostname = 'jump' - m.vm.synced_folder '.', '/icn' + m.vm.synced_folder '.', '/icn', type: 'nfs' m.vm.provider :libvirt do |libvirt| libvirt.graphics_ip = '0.0.0.0' libvirt.default_prefix = "#{site}-" -- 2.16.6