From f8f0524828eb5a813e5176741c30dad0bd7fcbd7 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Sun, 16 Oct 2022 21:44:59 +0900 Subject: [PATCH] Vagrantfile: explicitly specify rsync as the shared folder driver Signed-off-by: Akihiro Suda --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index c29957da2..317fd28e8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -34,6 +34,8 @@ Vagrant.configure("2") do |config| v.machine_virtual_size = disk_size end + config.vm.synced_folder ".", "/vagrant", type: "rsync" + config.vm.provision 'shell', path: 'script/resize-vagrant-root.sh' # Disabled by default. To run: