From: Todd Malsbary Date: Wed, 26 Jan 2022 22:37:47 +0000 (-0800) Subject: Require nfs synced folder in Vagrantfile X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F31%2F4631%2F1;p=icn.git 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 --- 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}-"