From 1549b075244b7f6ddd3909175ec7fc001eb70b90 Mon Sep 17 00:00:00 2001 From: Lalatendu Mohanty Date: Tue, 1 Mar 2016 01:41:53 +0530 Subject: [PATCH] Removing the sync folder option using rsync As it is not applicable on Virtualbox running on Windows Fixes issue #366 Signed-off-by: Lalatendu Mohanty --- imagefactory_plugins/ovfcommon/ovfcommon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagefactory_plugins/ovfcommon/ovfcommon.py b/imagefactory_plugins/ovfcommon/ovfcommon.py index 9ba9142d..7642ae86 100644 --- a/imagefactory_plugins/ovfcommon/ovfcommon.py +++ b/imagefactory_plugins/ovfcommon/ovfcommon.py @@ -1247,7 +1247,7 @@ def sync(self): vagrantfile = '''Vagrant.configure("2") do |config| config.vm.base_mac = "%s" - config.vm.synced_folder ".", "%s", type: "rsync" + config.vm.synced_folder ".", "/vagrant", disabled: true end ''' % (self.mac_addr, self.vagrant_sync_directory) vagrantfile_path = os.path.join(self.path, "Vagrantfile")