From 2667de163b0f135ceffd50ca435247f037611b2b Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Sat, 30 Jun 2018 10:00:33 -0700 Subject: [PATCH] Enable rsync synced folders for non-DrvFs file systems within WSL --- plugins/synced_folders/rsync/synced_folder.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/synced_folders/rsync/synced_folder.rb b/plugins/synced_folders/rsync/synced_folder.rb index 4e978f371..680870be8 100644 --- a/plugins/synced_folders/rsync/synced_folder.rb +++ b/plugins/synced_folders/rsync/synced_folder.rb @@ -48,6 +48,12 @@ module VagrantPlugins RsyncHelper.rsync_single(machine, ssh_info, folder_opts) end end + + # Enable rsync synced folders within WSL when in use + # on non-DrvFs file systems + def self.wsl_allow_non_drvfs? + true + end end end end