-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing the sync folder option using rsync #367
Removing the sync folder option using rsync #367
Conversation
Signed-off-by: Dennis Gilmore <[email protected]>
As it is not applicable on Virtualbox running on Windows Fixes issue redhat-imaging#366 Signed-off-by: Lalatendu Mohanty <[email protected]>
ef0822b
to
6443c02
Compare
So what is the status here really? |
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@imcleod I should have removed the line config.vm.synced_folder ".", "%s", type: "rsync"
instead of disabling it.
@ausil I saw your commit with my commit in this PR. Not sure is this intentional or some git magic. I am planning to close this PR and open a new one. Do you have other suggestion for me? |
I have no idea how that happened. looks like you pulled in a commit I did |
What's the issue for that and when is this going to happen? TBH, I doubt the use of rsync as enforced default strategy. |
As it is not applicable on Virtualbox running on Windows
Fixes issue #366
Signed-off-by: Lalatendu Mohanty [email protected]