Skip to content
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

Windows Rsync Input Line is Too Long #5834

Closed
nfloersch opened this issue Jun 15, 2015 · 4 comments
Closed

Windows Rsync Input Line is Too Long #5834

nfloersch opened this issue Jun 15, 2015 · 4 comments

Comments

@nfloersch
Copy link

Getting an error when setting up an rsync'd folder between a Windows Vagrant host and a Windows Vagrant client. I have tried various Windows rsync options - cwrsync, rsync from git, and mingw, and now cygwin.

I'm using a VMWare Workstation provider (Workstation v11, pro).
Vagrant is v1.7.2
Windows 8.1 host

I've tried cwrsync, rsync, git, mingw, and cygwin packages from Chocolatey... in the cases where I got rsync to work at all, it always seems to come down to this same error:
---snip---

There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/Users/nick/vagrant/agbmp/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no- owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/Users/nick/vagrant/agbmp/ [email protected]:/vagrant
Error: Could not create directory '/home/Nick/.ssh'.
Warning: Permanently added '192.168.139.131' (ECDSA) to the list of known hosts.
The input line is too long.
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

INFO interface: Machine: error-exit ["Vagrant::Errors::RSyncError", "There was an error when attempting to rsync a synced folder.\nPlease inspect the error message below for more info.\n\nHost path: /c/Users/nick/vagrant/agbmp/\nGuest path: /vagrant\nCommand: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/Users/nick/vagrant/agbmp/ [email protected]:/vagrant\nError: Could not create directory '/home/Nick/.ssh'.\r\nWarning: Permanently added '192.168.139.131' (ECDSA) to the list of known hosts.\r\nThe input line is too long.\r\nrsync: connection unexpectedly closed (0 bytes received so far) [sender]\nrsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]\n"]

---snip---

I understand that there is no easy circumvention of the max length of characters in a CMD input... but then it seems impossible that this has ever worked for anyone... I'm not hiding my data in some strange, deeply nested path. I'm trying to sync c:\users\nick\vagrant\agbmp to c:\vagrant...

Ultimately, this is the last thing I can seem to try before ditching Vagrant - the sync'd folder thing in a Windows environment just seems to be completely unusable with NPM... which defies the purpose of using Vagrant for us. I've read that in some cases using the rsync'd folder with Vagrant works better because there are no cross-shared-folder symlinks. But honestly the rsync support in Vagrant still seems incredibly *nix oriented, as well.

@nfloersch
Copy link
Author

The Windows-to-Windows Rsync setup is just not working...

I was amazed... I solved the "input line is too long" problem by moving my host's home for the Vagrant to c:\vagrant... which suggests that ultimately there is a limit for the rsync command length that is partially comprised of the path... and pretty much any path more than 1 folder deep is going to make the whole rsync command too long.

That said, I got past the "input line too long" thing ... and got back into rsync details...
For rsync I setup cygwin on the host and the vagrant. Using chocolatey to do this did not work... at least the standard chocolatey cygwin package does not setup a really normal cygwin environment. So I put cygwin on both, and setup both rsync and ssh... and sshd on the vagrant. I tested the connection manually and verified that the login was working. Then I tried to get Vagrant using the Rsync folder... ugh. Telling it to use an Rsync folder always results in a failure to Rsync when the Vagrant "ups" itself.

$ vagrant up
Bringing machine 'default' up with 'vmware_workstation' provider...
==> default: Verifying vmnet devices are healthy...
==> default: Preparing network adapters...
==> default: Starting the VMware VM...
==> default: Waiting for machine to boot. This may take a few minutes...
==> default: Machine booted and ready!
==> default: Forwarding ports...
    default: -- 3389 => 3389
    default: -- 22 => 2222
    default: -- 9000 => 9000
    default: -- 3000 => 3000
    default: -- 5432 => 5433
    default: -- 3001 => 3001
    default: -- 5985 => 55985
==> default: Configuring network adapters within the VM...
==> default: Configuring secondary network adapters through VMware
==> default: on Windows is not yet supported. You will need to manually
==> default: configure the network adapter.
==> default: Rsyncing folder: /c/vagrant/ => /vagrant
==> default:   - Exclude: [".vagrant/", ".git/"]
There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: unexplained error (code 255) at io.c(226) [sender=3.1.1]

So then I looked at debug output for both a boot, and just using "vagrant rsync"... here is the boot debug output

DEBUG winrmshell: powershell executing:
hostname
if ($?) { exit 0 } else { if($LASTEXITCODE) { exit $LASTEXITCODE } else { exit 1 } }
 INFO winrmshell: Attempting to connect to WinRM...
 INFO winrmshell:   - Host: 192.168.139.132
 INFO winrmshell:   - Port: 5985
 INFO winrmshell:   - Username: vagrant
DEBUG winrmshell: Output: {:data=>[{:stdout=>"vagrant-2012-r2"}, {:stdout=>"\r\n"}], :exitcode=>0}
 INFO winrm: WinRM is ready!
DEBUG guest: Searching for cap: rsync_pre
DEBUG guest: Checking in: windows
 INFO subprocess: Starting process: ["C:\\tools\\cygwin\\bin/rsync.EXE", "--verbose", "--archive", "--delete", "-z", "--copy-links", "--chmod=ugo=rwX", "--no-perms", "--no-owner", "--no-group", "-e", "ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key'", "--exclude", ".vagrant/", "--exclude", ".git/", "/c/vagrant/", "[email protected]:/vagrant"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
DEBUG subprocess: stderr: Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31976
DEBUG subprocess: Exit status: 12
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x47026b0>
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x47337a8>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x4628850>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x3ac4d00>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-acd0415daa9cd0cf5842d09d4da00f53
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x29f2728>
 INFO warden: Calling IN action: HashiCorp Background Check: End
 INFO logger: Cleaning up background activation thread...
 INFO warden: Calling OUT action: HashiCorp Background Check: End
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::Errors::RSyncError: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]
>
ERROR vagrant: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

ERROR vagrant: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/rsync/helper.rb:132:in `rsync_single'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/rsync/synced_folder.rb:48:in `block in enable'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/rsync/synced_folder.rb:47:in `each'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/rsync/synced_folder.rb:47:in `enable'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/synced_folders.rb:90:in `block in call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/synced_folders.rb:87:in `each'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/synced_folders.rb:87:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/synced_folder_cleanup.rb:28:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/nfs/action_cleanup.rb:19:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:1005:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/provision.rb:80:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:71:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:1035:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/box_check_outdated.rb:36:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:1249:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:273:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:143:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:1249:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:99:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:273:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/action_farm.rb:160:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:214:in `action_raw'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:191:in `block in action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/environment.rb:516:in `lock'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:178:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/machine.rb:178:in `action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/logging-1.8.2/lib/logging/diagnostic_context.rb:323:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/logging-1.8.2/lib/logging/diagnostic_context.rb:323:in `block in create_with_logging_context'
 INFO interface: error: There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /c/vagrant/
Guest path: /vagrant
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant
Error: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.
Connection closed by 192.168.139.132
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]

 INFO interface: Machine: error-exit ["Vagrant::Errors::RSyncError", "There was an error when attempting to rsync a synced folder.\nPlease inspect the error message below for more info.\n\nHost path: /c/vagrant/\nGuest path: /vagrant\nCommand: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no-perms --no-owner --no-group -e ssh -p 22 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i 'C:/Users/nick/.vagrant.d/insecure_private_key' --exclude .vagrant/ --exclude .git/ /c/vagrant/ [email protected]:/vagrant\nError: Warning: Permanently added '192.168.139.132' (ECDSA) to the list of known hosts.\r\nConnection closed by 192.168.139.132\r\nrsync: connection unexpectedly closed (0 bytes received so far) [sender]\nrsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1]\n"]

And here is the output of "vagrant rsync" ...

$ vagrant rsync
 INFO global: Vagrant version: 1.7.2
 INFO global: Ruby version: 2.0.0
 INFO global: RubyGems version: 2.0.14
 INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.7.2\\bin\\vagrant"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO global: VAGRANT_LOG="DEBUG"
 INFO global: Plugins:
 INFO global:   - bundler = 1.7.11
 INFO global:   - mime-types = 1.25.1
 INFO global:   - rest-client = 1.6.9
 INFO global:   - vagrant-share = 1.1.3
 INFO global:   - vagrant-vmware-workstation = 3.2.8
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
 INFO global: Loading plugins!
 INFO manager: Registered plugin: vagrant-share
 INFO manager: Registered plugin: VMware Workstation Provider
 INFO vagrant: `vagrant` invoked: ["rsync"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x38d67f8>)
 INFO environment:   - cwd: C:/vagrant
 INFO environment: Home path: C:/Users/nick/.vagrant.d
 INFO environment: Local data path: C:/vagrant/.vagrant
DEBUG environment: Creating: C:/vagrant/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x39c4098>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x3af0770>
 INFO warden: Calling IN action: #<HashiCorp::VagrantVMwareworkstation::SetupPlugin:0x3af2120>
 INFO warden: Calling IN action: HashiCorp Background Check: Start
DEBUG activation: Last ping time: 1434080759
DEBUG activation: License file ID: d05ff608-3093-487a-9959-b1f644c5778a
 INFO warden: Calling OUT action: HashiCorp Background Check: Start
 INFO warden: Calling OUT action: #<HashiCorp::VagrantVMwareworkstation::SetupPlugin:0x3af2120>
 INFO cli: CLI: [] "rsync" []
DEBUG cli: Invoking command class: VagrantPlugins::SyncedFolderRSync::Command::Rsync []
DEBUG rsync: Getting target VMs for command. Arguments:
DEBUG rsync:  -- names: []
DEBUG rsync:  -- options: nil
DEBUG rsync: Loading all machines...
 INFO loader: Set :root = #<Pathname:C:/vagrant/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:C:/vagrant/Vagrantfile>
DEBUG loader: Load procs for pathname: C:/vagrant/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO rsync: Active machine found with name default. Using provider: vmware_workstation
 INFO environment: Getting machine: default (vmware_workstation)
 INFO environment: Uncached load of machine.
 INFO loader: Set "30246888_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "30246888_machine_default"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO box_collection: Box found: vtag_v43 (vmware_desktop)
 INFO loader: Set :"33515616_vtag_v43_vmware_desktop" = #<Pathname:C:/Users/nick/.vagrant.d/boxes/vtag_v43/0/vmware_desktop/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:C:/Users/nick/.vagrant.d/boxes/vtag_v43/0/vmware_desktop/Vagrantfile>
DEBUG loader: Load procs for pathname: C:/Users/nick/.vagrant.d/boxes/vtag_v43/0/vmware_desktop/Vagrantfile
 INFO root: Version requirements from Vagrantfile: [">= 1.6.2"]
 INFO root:   - Version requirements satisfied!
 INFO loader: Loading configuration in order: [:"33515616_vtag_v43_vmware_desktop", :home, :root, "30246888_machine_default"]
DEBUG loader: Loading from: 33515616_vtag_v43_vmware_desktop (evaluating)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO loader: Set :"30246888_vm_default_vtag_v43_vmware_workstation" = [["2", #<Proc:0x39bb818>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x39bb818>]
 INFO loader: Loading configuration in order: [:"33515616_vtag_v43_vmware_desktop", :home, :root, "30246888_machine_default", :"30246888_vm_default_vtag_v43_vmware_workstation"]
DEBUG loader: Loading from: 33515616_vtag_v43_vmware_desktop (cache)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 30246888_vm_default_vtag_v43_vmware_workstation (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO machine: Initializing machine: default
 INFO machine:   - Provider: HashiCorp::VagrantVMwareworkstation::Provider
 INFO machine:   - Box: #<Vagrant::Box:0x3acee28>
 INFO machine:   - Data dir: C:/vagrant/.vagrant/machines/default/vmware_workstation
DEBUG vmware: Re-initializing driver for new ID: "C:/vagrant/.vagrant/machines/default/vmware_workstation/ed696320-d011-417d-8c37-2340b497a26b/packer-vmware-windows-iso.vmx"
 INFO vmware_driver: VMX file: C:/vagrant/.vagrant/machines/default/vmware_workstation/ed696320-d011-417d-8c37-2340b497a26b/packer-vmware-windows-iso.vmx
DEBUG machine: Eager loading WinRM communicator to avoid GH-3390
 INFO winrm: Initializing WinRMCommunicator
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\ed696320-d011-417d-8c37-2340b497a26b\packer-vmware-windows-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO rsync: With machine: default (#<HashiCorp::VagrantVMwareworkstation::Provider:0x3a97460 @logger=#<Log4r::Logger:0x3a97b08 @fullname="hashicorp::vagrant::vmware", @outputters=[], @additive=true, @name="vmware", @path="hashicorp::vagrant", @parent=#<Log4r::Logger:0x25d96e8 @fullname="hashicorp", @outputters=[#<Log4r::StderrOutputter:0x2939970 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x2939910>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x290c9e8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="hashicorp", @path="", @parent=#<Log4r::RootLogger:0x29e5a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: default (HashiCorp::VagrantVMwareworkstation::Provider)>, @driver=#<HashiCorp::VagrantVMwareworkstation::Driver::WorkstationWindows:0x39c60a8 @lic_features=["workstation", "workstation10", "workstation11", "workstation10"], @logger=#<Log4r::Logger:0x39c5ee0 @fullname="hashicorp::provider::vmware_driver", @outputters=[], @additive=true, @name="vmware_driver", @path="hashicorp::provider", @parent=#<Log4r::Logger:0x25d96e8 @fullname="hashicorp", @outputters=[#<Log4r::StderrOutputter:0x2939970 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x2939910>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x290c9e8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="hashicorp", @path="", @parent=#<Log4r::RootLogger:0x29e5a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @vmx_path=#<Pathname:C:/vagrant/.vagrant/machines/default/vmware_workstation/ed696320-d011-417d-8c37-2340b497a26b/packer-vmware-windows-iso.vmx>, @vm_dir=#<Pathname:C:/vagrant/.vagrant/machines/default/vmware_workstation/ed696320-d011-417d-8c37-2340b497a26b>, @reg_type=131097, @install_path=#<Pathname:C:\Program Files (x86)\VMware\VMware Workstation\>, @version="11.1.0.2496824", @vmrun_path=#<Pathname:C:\Program Files (x86)\VMware\VMware Workstation/vmrun.exe>, @vnetlib_path=#<Pathname:C:\Program Files (x86)\VMware\VMware Workstation/vnetlib.exe>, @natconf_path=#<Pathname:C:/ProgramData/VMware/vmnetnat.conf>>, @cap_logger=#<Log4r::Logger:0x3990ed0 @fullname="vagrant::capability_host::hashicorp::vagrantvmwareworkstation::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::hashicorp::vagrantvmwareworkstation", @parent=#<Log4r::Logger:0x29e5cf0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x2939970 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x2939910>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x290c9e8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x29e5a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:vmware_workstation, #<#<Class:0x3991260>:0x3968268>]], @cap_args=[#<Vagrant::Machine: default (HashiCorp::VagrantVMwareworkstation::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x3991170 @items={:public_address=>#<Proc:0x266d330@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/docker/plugin.rb:54>, :proxy_machine=>#<Proc:0x266d1b0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/docker/plugin.rb:59>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x39910f8 @items={:public_address=>#<Proc:0x28cfc68@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x3991050 @items={:forwarded_ports=>#<Proc:0x28f6a58@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x28f69c8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.7.2/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x3908b68@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-share-1.1.3/lib/vagrant-share.rb:39>}, @results_cache={}>, :vmware_workstation=>#<Vagrant::Registry:0x3990fa8 @items={:forwarded_ports=>#<Proc:0x3b28450@C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/plugin.rb:92>, :public_address=>#<Proc:0x3b283d8@C:/Users/nick/.vagrant.d/gems/gems/vagrant-vmware-workstation-3.2.8/lib/vagrant-vmware-workstation/plugin.rb:97>}, @results_cache={}>}>)
DEBUG provider: Searching for cap: proxy_machine
DEBUG provider: Checking in: vmware_workstation
 INFO winrm: Checking whether WinRM is ready...
DEBUG provider: Searching for cap: winrm_info
DEBUG provider: Checking in: vmware_workstation
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\ed696320-d011-417d-8c37-2340b497a26b\packer-vmware-windows-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO vmware_driver: Reading an accessible IP for machine...
 INFO vmware_driver: Trying vmrun getGuestIPAddress...
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "getGuestIPAddress", "C:/vagrant/.vagrant/machines/default/vmware_workstation/ed696320-d011-417d-8c37-2340b497a26b/packer-vmware-windows-iso.vmx"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Error: The VMware Tools are not running in the virtual machine: C:/vagrant/.vagrant/machines/default/vmware_workstation/ed696320-d011-417d-8c37-2340b497a26b/packer-vmware-windows-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 4294967295
 INFO vmware_driver: vmrun getGuestIPAddress failed: VMRunError
 INFO vmware_driver: Reading VMX data...
DEBUG vmware_driver:   - .encoding = UTF-8
DEBUG vmware_driver:   - bios.bootorder = hdd,CDROM
DEBUG vmware_driver:   - checkpoint.vmstate =
DEBUG vmware_driver:   - cleanshutdown = FALSE
DEBUG vmware_driver:   - config.version = 8
DEBUG vmware_driver:   - displayname = vagrant: default
DEBUG vmware_driver:   - ehci.pcislotnumber = -1
DEBUG vmware_driver:   - ehci.present = FALSE
DEBUG vmware_driver:   - ethernet0.addresstype = generated
DEBUG vmware_driver:   - ethernet0.connectiontype = nat
DEBUG vmware_driver:   - ethernet0.present = TRUE
DEBUG vmware_driver:   - ethernet0.virtualdev = vmxnet3
DEBUG vmware_driver:   - ethernet1.addresstype = generated
DEBUG vmware_driver:   - ethernet1.connectiontype = bridged
DEBUG vmware_driver:   - ethernet1.present = TRUE
DEBUG vmware_driver:   - ethernet1.virtualdev = e1000
DEBUG vmware_driver:   - extendedconfigfile = packer-vmware-windows-iso.vmxf
DEBUG vmware_driver:   - floppy0.clientdevice = FALSE
DEBUG vmware_driver:   - floppy0.filename = /var/folders/mx/gt6_tgmj6zx56mwd74bpw4gwlnz8sb/T/packer075973142
DEBUG vmware_driver:   - floppy0.filetype = file
DEBUG vmware_driver:   - floppy0.present = TRUE
DEBUG vmware_driver:   - guestos = windows8srv-64
DEBUG vmware_driver:   - gui.exitonclihlt = TRUE
DEBUG vmware_driver:   - gui.fullscreenatpoweron = FALSE
DEBUG vmware_driver:   - gui.viewmodeatpoweron = windowed
DEBUG vmware_driver:   - hgfs.linkrootshare = TRUE
DEBUG vmware_driver:   - hgfs.maprootshare = TRUE
DEBUG vmware_driver:   - ide1:0.devicetype = cdrom-image
DEBUG vmware_driver:   - ide1:0.filename = /Users/nick/SEIIAC/packer/packer_cache/1ffa005f143968ab8e2ff0b19ece342d37851e85cc1dc745da239f69edca82b8.ISO
DEBUG vmware_driver:   - ide1:0.present = TRUE
DEBUG vmware_driver:   - ide1:0.startconnected = TRUE
DEBUG vmware_driver:   - isolation.tools.hgfs.disable = TRUE
DEBUG vmware_driver:   - memsize = 2048
DEBUG vmware_driver:   - migrate.hostlog = ./packer-vmware-windows-iso-4f03d48b.hlog
DEBUG vmware_driver:   - monitor.phys_bits_used = 40
DEBUG vmware_driver:   - msg.autoanswer = true
DEBUG vmware_driver:   - numvcpus = 1
DEBUG vmware_driver:   - nvram = packer-vmware-windows-iso.nvram
DEBUG vmware_driver:   - pcibridge0.pcislotnumber = 17
DEBUG vmware_driver:   - pcibridge0.present = TRUE
DEBUG vmware_driver:   - pcibridge4.functions = 8
DEBUG vmware_driver:   - pcibridge4.pcislotnumber = 21
DEBUG vmware_driver:   - pcibridge4.present = TRUE
DEBUG vmware_driver:   - pcibridge4.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge5.functions = 8
DEBUG vmware_driver:   - pcibridge5.pcislotnumber = 22
DEBUG vmware_driver:   - pcibridge5.present = TRUE
DEBUG vmware_driver:   - pcibridge5.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge6.functions = 8
DEBUG vmware_driver:   - pcibridge6.pcislotnumber = 23
DEBUG vmware_driver:   - pcibridge6.present = TRUE
DEBUG vmware_driver:   - pcibridge6.virtualdev = pcieRootPort
DEBUG vmware_driver:   - pcibridge7.functions = 8
DEBUG vmware_driver:   - pcibridge7.pcislotnumber = 24
DEBUG vmware_driver:   - pcibridge7.present = TRUE
DEBUG vmware_driver:   - pcibridge7.virtualdev = pcieRootPort
DEBUG vmware_driver:   - powertype.poweroff = soft
DEBUG vmware_driver:   - powertype.poweron = soft
DEBUG vmware_driver:   - powertype.reset = soft
DEBUG vmware_driver:   - powertype.suspend = soft
DEBUG vmware_driver:   - proxyapps.publishtohost = FALSE
DEBUG vmware_driver:   - remotedisplay.vnc.enabled = false
DEBUG vmware_driver:   - remotedisplay.vnc.port = 5900
DEBUG vmware_driver:   - replay.filename =
DEBUG vmware_driver:   - replay.supported = FALSE
DEBUG vmware_driver:   - scsi0.pcislotnumber = 160
DEBUG vmware_driver:   - scsi0.present = TRUE
DEBUG vmware_driver:   - scsi0.saswwid = 50 05 05 68 95 55 bd 70
DEBUG vmware_driver:   - scsi0.virtualdev = lsisas1068
DEBUG vmware_driver:   - scsi0:0.filename = disk.vmdk
DEBUG vmware_driver:   - scsi0:0.present = TRUE
DEBUG vmware_driver:   - scsi0:0.redo =
DEBUG vmware_driver:   - softpoweroff = FALSE
DEBUG vmware_driver:   - sound.startconnected = FALSE
DEBUG vmware_driver:   - tools.remindinstall = FALSE
DEBUG vmware_driver:   - tools.synctime = TRUE
DEBUG vmware_driver:   - tools.upgrade.policy = upgradeAtPowerCycle
DEBUG vmware_driver:   - toolsinstallmanager.updatecounter = 2
DEBUG vmware_driver:   - unity.wascapable = FALSE
DEBUG vmware_driver:   - usb.pcislotnumber = -1
DEBUG vmware_driver:   - usb.present = FALSE
DEBUG vmware_driver:   - uuid.action = create
DEBUG vmware_driver:   - uuid.bios = 56 4d 8f f8 95 55 bd 7e-e4 a6 1e 58 cc 08 15 d5
DEBUG vmware_driver:   - uuid.location = 56 4d 8f f8 95 55 bd 7e-e4 a6 1e 58 cc 08 15 d5
DEBUG vmware_driver:   - virtualhw.productcompatibility = hosted
DEBUG vmware_driver:   - virtualhw.version = 9
DEBUG vmware_driver:   - vm.genid = 2493310550792198895
DEBUG vmware_driver:   - vm.genidx = -6215563953429207992
DEBUG vmware_driver:   - vmci0.id = 1861462627
DEBUG vmware_driver:   - vmci0.pcislotnumber = 35
DEBUG vmware_driver:   - vmci0.present = TRUE
DEBUG vmware_driver:   - vmotion.checkpointfbsize = 33554432
DEBUG vmware_driver:   - ethernet0.pcislotnumber = 192
DEBUG vmware_driver:   - ethernet1.pcislotnumber = 32
DEBUG vmware_driver:   - ethernet0.generatedaddress = 00:0c:29:08:15:d5
DEBUG vmware_driver:   - ethernet0.generatedaddressoffset = 0
DEBUG vmware_driver:   - ethernet1.generatedaddress = 00:0c:29:08:15:df
DEBUG vmware_driver:   - ethernet1.generatedaddressoffset = 10
DEBUG vmware_driver: Trying to get MAC address for ethernet0
DEBUG vmware_driver: No explicitly set MAC, looking or auto-generated one...
DEBUG vmware_driver:  -- MAC: 00:0c:29:08:15:d5
 INFO vmware_driver: Reading DHCP lease for '00:0c:29:08:15:d5' on 'vmnet8'
 INFO vmware_driver: DHCP leases file: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Initialized DHCP helper: C:\ProgramData/VMware/vmnetdhcp.leases
 INFO dhcp_lease_file: Looking for IP for MAC: 00:0c:29:08:15:d5
 INFO dhcp_lease_file:   - IP: 192.168.139.132
DEBUG winrmshell: initializing WinRMShell
DEBUG winrmshell: powershell executing:
hostname
if ($?) { exit 0 } else { if($LASTEXITCODE) { exit $LASTEXITCODE } else { exit 1 } }
 INFO winrmshell: Attempting to connect to WinRM...
 INFO winrmshell:   - Host: 192.168.139.132
 INFO winrmshell:   - Port: 5985
 INFO winrmshell:   - Username: vagrant
DEBUG winrmshell: Output: {:data=>[{:stdout=>"vagrant-2012-r2"}, {:stdout=>"\r\n"}], :exitcode=>0}
 INFO winrm: WinRM is ready!
 INFO subprocess: Starting process: ["C:\\Program Files (x86)\\VMware\\VMware Workstation/vmrun.exe", "list"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Total running VMs: 1
C:\vagrant\.vagrant\machines\default\vmware_workstation\ed696320-d011-417d-8c37-2340b497a26b\packer-vmware-windows-iso.vmx
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG vmware: VM state requested. Current state: running
 INFO environment: Running hook: environment_unload
 INFO host: Autodetecting host type for [#<Vagrant::Environment: C:/vagrant>]
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
DEBUG host: Trying: freebsd
DEBUG host: Trying: gentoo
DEBUG host: Trying: redhat
DEBUG host: Trying: slackware
DEBUG host: Trying: suse
DEBUG host: Trying: bsd
DEBUG host: Trying: linux
DEBUG host: Trying: null
DEBUG host: Trying: windows
 INFO host: Detected: windows!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x3956f70>
 INFO warden: Calling IN action: HashiCorp Background Check: End
 INFO logger: Cleaning up background activation thread...
 INFO warden: Calling OUT action: HashiCorp Background Check: End

@mitchellh
Copy link
Contributor

Unfortunately I don't see a way to slve this since there is no way to specify the input paths without using the CLI. it seems that the CLI itself, the shell or rsync (I'm not sure which) is pretty broken. I'm not sure what Vagrant can do about that.

I'm sorry but rsync will not work for you

@nfloersch
Copy link
Author

I think this bug has morphed. Indeed there is a bug with the path length in Windows - a bug that I can understand is not resolvable by Vagrant as the OS itself is limiting the parameters.

But there is also a different issue where even if rSync is running when the paths involved do not exceed the required max length, it is still not working. I don't think they are the same issue. I'm going to continue investigating but may open a separate bug for that.

@mitchellh
Copy link
Contributor

@nfloersch I agree with that, please search first since I'm quite confident I saw other issues related to that.

@ghost ghost locked and limited conversation to collaborators Apr 8, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants