vagrant-landrush / landrush

A Vagrant plugin that provides a simple DNS server for Vagrant guests
MIT License
666 stars 78 forks source link

Landrush daemon killed on vagrant reload #279

Closed proteansec closed 5 years ago

proteansec commented 7 years ago

I'm on Linux host trying to use landrush with Windows guests. My relevant part of the Vagrantfile:

Vagrant.configure("2") do |config| config.vm.define "vagrant-win8x86-enterprise" config.vm.box = "win8x86-enterprise" config.vm.hostname = "win8x86-enterprise"

create a private network

config.vm.network :private_network, ip: "172.28.128.5" config.vm.communicator = "winrm" config.winrm.username = 'vagrant' config.winrm.password = 'vagrant' config.vm.guest = :windows config.vm.synced_folder '.', '/vagrant', disabled: true

if Vagrant.has_plugin?("landrush") config.landrush_ip.auto_install = true config.landrush.enabled = true config.landrush.guest_redirect_dns = false config.landrush.host_redirect_dns= false config.landrush.upstream '127.0.0.1', 53, :udp config.landrush.host 'win8x86-enterprise', '172.28.128.5' end end

First I do vagrant up, which imports the VM box when everything is working fine - after the following is done, the landrush will be running fine, dnsmasq will be listening on the 10053 port and able to resolve DNS names.

Bringing machine 'vagrant-win8x86-enterprise' up with 'virtualbox' provider... ==> vagrant-win8x86-enterprise: Importing base box 'win8x86-enterprise'... ==> vagrant-win8x86-enterprise: Matching MAC address for NAT networking... ==> vagrant-win8x86-enterprise: Setting the name of the VM: win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593 ==> vagrant-win8x86-enterprise: Clearing any previously set network interfaces... ==> vagrant-win8x86-enterprise: [landrush] starting dns server ==> vagrant-win8x86-enterprise: Preparing network interfaces based on configuration... vagrant-win8x86-enterprise: Adapter 1: nat vagrant-win8x86-enterprise: Adapter 2: hostonly ==> vagrant-win8x86-enterprise: Forwarding ports... vagrant-win8x86-enterprise: 3389 (guest) => 3389 (host) (adapter 1) vagrant-win8x86-enterprise: 5985 (guest) => 5985 (host) (adapter 1) vagrant-win8x86-enterprise: 5986 (guest) => 55986 (host) (adapter 1) vagrant-win8x86-enterprise: 22 (guest) => 2222 (host) (adapter 1) ==> vagrant-win8x86-enterprise: Running 'pre-boot' VM customizations... ==> vagrant-win8x86-enterprise: Booting VM... ==> vagrant-win8x86-enterprise: Waiting for machine to boot. This may take a few minutes... vagrant-win8x86-enterprise: WinRM address: 127.0.0.1:5985 vagrant-win8x86-enterprise: WinRM username: vagrant vagrant-win8x86-enterprise: WinRM execution_time_limit: PT2H vagrant-win8x86-enterprise: WinRM transport: negotiate ==> vagrant-win8x86-enterprise: Machine booted and ready! ==> vagrant-win8x86-enterprise: Checking for guest additions in VM... vagrant-win8x86-enterprise: No guest additions were detected on the base box for this VM! Guest vagrant-win8x86-enterprise: additions are required for forwarded ports, shared folders, host only vagrant-win8x86-enterprise: networking, and more. If SSH fails on this machine, please install vagrant-win8x86-enterprise: the guest additions and repackage the box to continue. vagrant-win8x86-enterprise: vagrant-win8x86-enterprise: This is not an error message; everything may continue to work properly, vagrant-win8x86-enterprise: in which case you may ignore this message. ==> vagrant-win8x86-enterprise: Setting hostname... ==> vagrant-win8x86-enterprise: Configuring and enabling network interfaces... ==> vagrant-win8x86-enterprise: Landrush IP not installed in guest yet (or it's an outdated version). Installing now. ==> vagrant-win8x86-enterprise: [landrush] hostname win8x86-enterprise does not match the configured TLD: vagrant.test ==> vagrant-win8x86-enterprise: [landrush] You will not be able to access win8x86-enterprise from the host ==> vagrant-win8x86-enterprise: [landrush] adding machine entry: win8x86-enterprise => 172.28.128.5

The problems started occurring once I did vagrant reload, where the landrush start at the beginning of the command but fails afterwards. If we execute vagrant landrush status before the VM is waiting for the WinRM (highlighted line below), the command works and reports the landrush is running.

# vagrant reload
Bringing machine 'vagrant-win8x86-enterprise' up with 'virtualbox' provider... ==> vagrant-win8x86-enterprise: Importing base box 'win8x86-enterprise'... ==> vagrant-win8x86-enterprise: Matching MAC address for NAT networking... ==> vagrant-win8x86-enterprise: Setting the name of the VM: win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593 ==> vagrant-win8x86-enterprise: Clearing any previously set network interfaces... ==> vagrant-win8x86-enterprise: [landrush] starting dns server ==> vagrant-win8x86-enterprise: Preparing network interfaces based on configuration... vagrant-win8x86-enterprise: Adapter 1: nat vagrant-win8x86-enterprise: Adapter 2: hostonly ==> vagrant-win8x86-enterprise: Forwarding ports... vagrant-win8x86-enterprise: 3389 (guest) => 3389 (host) (adapter 1) vagrant-win8x86-enterprise: 5985 (guest) => 5985 (host) (adapter 1) vagrant-win8x86-enterprise: 5986 (guest) => 55986 (host) (adapter 1) vagrant-win8x86-enterprise: 22 (guest) => 2222 (host) (adapter 1) ==> vagrant-win8x86-enterprise: Running 'pre-boot' VM customizations... ==> vagrant-win8x86-enterprise: Booting VM... ==> vagrant-win8x86-enterprise: Waiting for machine to boot. This may take a few minutes... vagrant-win8x86-enterprise: WinRM address: 127.0.0.1:5985 vagrant-win8x86-enterprise: WinRM username: vagrant vagrant-win8x86-enterprise: WinRM execution_time_limit: PT2H vagrant-win8x86-enterprise: WinRM transport: negotiate

We can also verify that the landrush is indeed running as can be seen below:

vagrant landrush status

Daemon status: running pid=24381

ps aux | grep 24381

user 24381 2.0 0.0 219780 25348 pts/23 Sl 02:44 0:00 ruby /home/user/.vagrant.d/gems/gems/landrush-1.1.2/lib/landrush/server.rb 10053 /home/user/.vagrant.d/data/landrush

After the highlighted line above, the following happens, where we can clearly see the highlighted lines where the daemon is stopped/killed.

==> vagrant-win8x86-enterprise: Machine booted and ready! ==> vagrant-win8x86-enterprise: Checking for guest additions in VM... vagrant-win8x86-enterprise: No guest additions were detected on the base box for this VM! Guest vagrant-win8x86-enterprise: additions are required for forwarded ports, shared folders, host only vagrant-win8x86-enterprise: networking, and more. If SSH fails on this machine, please install vagrant-win8x86-enterprise: the guest additions and repackage the box to continue. vagrant-win8x86-enterprise: vagrant-win8x86-enterprise: This is not an error message; everything may continue to work properly, vagrant-win8x86-enterprise: in which case you may ignore this message. ==> vagrant-win8x86-enterprise: [landrush] removing machine entry: win8x86-enterprise Stopping daemon... Sending KILL to process 24381... ==> vagrant-win8x86-enterprise: Setting hostname... ==> vagrant-win8x86-enterprise: Configuring and enabling network interfaces... ==> vagrant-win8x86-enterprise: Landrush IP not installed in guest yet (or it's an outdated version). Installing now. ==> vagrant-win8x86-enterprise: [landrush] hostname win8x86-enterprise does not match the configured TLD: vagrant.test ==> vagrant-win8x86-enterprise: [landrush] You will not be able to access win8x86-enterprise from the host ==> vagrant-win8x86-enterprise: [landrush] adding machine entry: win8x86-enterprise => 172.28.128.5 ==> vagrant-win8x86-enterprise: Machine already provisioned. Run vagrant provision or use the --provision ==> vagrant-win8x86-enterprise: flag to force provisioning. Provisioners marked to run always will still run.

Here is also the vagrant reload --debug:

DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999 DEBUG subprocess: Exit status: 0

INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG winrmshell: Output: {:data=>[{:stdout=>"win8x86-enterprise"}, {:stdout=>"\r\n"}], :exitcode=>0} INFO winrm: WinRM is ready! INFO interface: output: Machine booted and ready! INFO interface: output: ==> vagrant-win8x86-enterprise: Machine booted and ready! ==> vagrant-win8x86-enterprise: Machine booted and ready! INFO warden: Calling IN action: #Landrush::Action::InstallPrerequisites:0x00000003048e60 INFO warden: Calling IN action: #VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000003048de8 INFO warden: Calling IN action: #VagrantPlugins::ProviderVirtualBox::Action::CheckGuestAdditions:0x00000003048dc0 INFO interface: output: Checking for guest additions in VM... INFO interface: output: ==> vagrant-win8x86-enterprise: Checking for guest additions in VM... ==> vagrant-win8x86-enterprise: Checking for guest additions in VM... INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "guestproperty", "get", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "/VirtualBox/GuestAdd/Version"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: No value set! DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO interface: detail: No guest additions were detected on the base box for this VM! Guest additions are required for forwarded ports, shared folders, host only networking, and more. If SSH fails on this machine, please install the guest additions and repackage the box to continue.

This is not an error message; everything may continue to work properly, in which case you may ignore this message. INFO interface: detail: vagrant-win8x86-enterprise: No guest additions were detected on the base box for this VM! Guest vagrant-win8x86-enterprise: additions are required for forwarded ports, shared folders, host only vagrant-win8x86-enterprise: networking, and more. If SSH fails on this machine, please install vagrant-win8x86-enterprise: the guest additions and repackage the box to continue. vagrant-win8x86-enterprise: vagrant-win8x86-enterprise: This is not an error message; everything may continue to work properly, vagrant-win8x86-enterprise: in which case you may ignore this message. vagrant-win8x86-enterprise: No guest additions were detected on the base box for this VM! Guest vagrant-win8x86-enterprise: additions are required for forwarded ports, shared folders, host only vagrant-win8x86-enterprise: networking, and more. If SSH fails on this machine, please install vagrant-win8x86-enterprise: the guest additions and repackage the box to continue. vagrant-win8x86-enterprise: vagrant-win8x86-enterprise: This is not an error message; everything may continue to work properly, vagrant-win8x86-enterprise: in which case you may ignore this message. INFO warden: Calling IN action: #<Proc:0x00000002ff9e78@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling IN action: #<Proc:0x000000015aef50@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling IN action: #<Proc:0x0000000229c960@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling IN action: #<Proc:0x00000001950910@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling IN action: #Landrush::Action::Teardown:0x00000002fcc478 INFO interface: info: [landrush] removing machine entry: win8x86-enterprise INFO interface: info: ==> vagrant-win8x86-enterprise: [landrush] removing machine entry: win8x86-enterprise ==> vagrant-win8x86-enterprise: [landrush] removing machine entry: win8x86-enterprise Stopping daemon... Sending KILL to process 1816... INFO warden: Calling OUT action: #Landrush::Action::Teardown:0x00000002fcc478 INFO warden: Calling OUT action: #<Proc:0x00000001950910@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #<Proc:0x0000000229c960@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #<Proc:0x000000015aef50@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #<Proc:0x00000002ff9e78@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CheckGuestAdditions:0x00000003048dc0 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000003048de8 INFO warden: Calling OUT action: #Landrush::Action::InstallPrerequisites:0x00000003048e60 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::WaitForCommunicator:0x00000003048e88 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000003048fa0 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::Boot:0x00000003048fc8 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000003049018 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::SaneDefaults:0x00000003078020 INFO interface: info: Setting hostname... INFO interface: info: ==> vagrant-win8x86-enterprise: Setting hostname... ==> vagrant-win8x86-enterprise: Setting hostname... INFO winrm: Checking whether WinRM is ready... DEBUG provider: Searching for cap: winrm_info DEBUG provider: Checking in: virtualbox INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: Searching for SSH port: 22 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG ssh: Checking key permissions: /home/user/.vagrant.d/insecure_private_key DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox INFO provider: Execute capability: forwarded_ports #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG winrmshell: initializing WinRMShell INFO winrmshell: Attempting to connect to WinRM... INFO winrmshell: - Host: 127.0.0.1 INFO winrmshell: - Port: 5985 INFO winrmshell: - Username: vagrant INFO winrmshell: - Transport: negotiate DEBUG winrmshell: [WinRM] opening remote shell on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell 3E247FAD-6D71-490E-BF8B-348ADAC4A29E is open on http://127.0.0.1:5985/wsman DEBUG winrmshell: Output: {:data=>[{:stdout=>"win8x86-enterprise"}, {:stdout=>"\r\n"}], :exitcode=>0} INFO winrm: WinRM is ready! DEBUG guest: Searching for cap: change_host_name DEBUG guest: Checking in: windows DEBUG guest: Found cap: change_host_name in windows INFO guest: Execute capability: change_host_name #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)>, "win8x86-enterprise" DEBUG winrmshell: Output: {:data=>[], :exitcode=>0} INFO warden: Calling OUT action: #Vagrant::Action::Builtin::SetHostname:0x00000003078048 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::ForwardPorts:0x00000003078070 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::NetworkFixIPv6:0x000000030d6f08 INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO interface: info: Configuring and enabling network interfaces... INFO interface: info: ==> vagrant-win8x86-enterprise: Configuring and enabling network interfaces... ==> vagrant-win8x86-enterprise: Configuring and enabling network interfaces... INFO winrm: Checking whether WinRM is ready... DEBUG provider: Searching for cap: winrm_info DEBUG provider: Checking in: virtualbox INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: Searching for SSH port: 22 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG ssh: Checking key permissions: /home/user/.vagrant.d/insecure_private_key DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox INFO provider: Execute capability: forwarded_ports #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG winrmshell: initializing WinRMShell INFO winrmshell: Attempting to connect to WinRM... INFO winrmshell: - Host: 127.0.0.1 INFO winrmshell: - Port: 5985 INFO winrmshell: - Username: vagrant INFO winrmshell: - Transport: negotiate DEBUG winrmshell: [WinRM] opening remote shell on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell 335453B8-5EDA-4ABF-A67F-1B232B496F12 is open on http://127.0.0.1:5985/wsman DEBUG winrmshell: Output: {:data=>[{:stdout=>"win8x86-enterprise"}, {:stdout=>"\r\n"}], :exitcode=>0} INFO winrm: WinRM is ready! DEBUG guest: Searching for cap: configure_networks DEBUG guest: Checking in: windows DEBUG guest: Found cap: configure_networks in windows INFO guest: Execute capability: configure_networks #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)>, [{:type=>:static, :adapter_ip=>"172.28.128.1", :ip=>"172.28.128.5", :netmask=>"255.255.255.0", :auto_config=>true, :interface=>1}] DEBUG configure_networks: Networks: [{:type=>:static, :adapter_ip=>"172.28.128.1", :ip=>"172.28.128.5", :netmask=>"255.255.255.0", :auto_config=>true, :interface=>1}] DEBUG provider: Searching for cap: nic_mac_addresses DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: nic_mac_addresses in virtualbox DEBUG provider: Searching for cap: nic_mac_addresses DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: nic_mac_addresses in virtualbox INFO provider: Execute capability: nic_mac_addresses #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG configure_networks: mac addresses: {"0800277EA658"=>1, "080027D3162D"=>2} DEBUG guestnetwork: querying WSMan version DEBUG winrm: powershell executing: ((test-wsman).productversion.split(" ") | select -last 1).split(".")[0] DEBUG winrmshell: Output: {:data=>[{:stdout=>"3"}, {:stdout=>"\r\n"}], :exitcode=>0} DEBUG guestnetwork: wsman version: 3

DEBUG winrm: powershell executing: $adapters = get-ciminstance win32_networkadapter -filter "macaddress is not null" $processed = @() foreach ($adapter in $adapters) { $Processed += new-object PSObject -Property @{ mac_address = $adapter.macaddress net_connection_id = $adapter.netconnectionid interface_index = $adapter.interfaceindex index = $adapter.index } } convertto-json -inputobject $processed

DEBUG winrmshell: Output: {:data=>[{:stdout=>"[\r\n {\r\n \"index\": 10,\r\n \"mac_address\": \"08:00:27:7E:A6:58\",\r\n \"net_connection_id\": \"Ethernet\",\r\n \"interface_index\": 12\r\n },\r\n {\r\n \"index\": 12,\r\n \"mac_address\": \"08:00:27:D3:16:2D\",\r\n \"net_conne"}, {:stdout=>"ction_id\": \"Ethernet 2\",\r\n \"interface_index\": 14\r\n }\r\n]"}, {:stdout=>"\r\n"}], :exitcode=>0} DEBUG guestnetwork: [{:index=>10, :mac_address=>"08:00:27:7E:A6:58", :net_connection_id=>"Ethernet", :interface_index=>12}, {:index=>12, :mac_address=>"08:00:27:D3:16:2D", :net_connection_id=>"Ethernet 2", :interface_index=>14}] DEBUG configure_networks: nic: {:index=>10, :mac_address=>"08:00:27:7E:A6:58", :net_connection_id=>"Ethernet", :interface_index=>12} DEBUG configure_networks: nic: {:index=>12, :mac_address=>"08:00:27:D3:16:2D", :net_connection_id=>"Ethernet 2", :interface_index=>14} DEBUG configure_networks: vm_interface_map: {1=>{:net_connection_id=>"Ethernet", :mac_address=>"0800277EA658", :interface_index=>12, :index=>10}, 2=>{:net_connection_id=>"Ethernet 2", :mac_address=>"080027D3162D", :interface_index=>14, :index=>12}} INFO guestnetwork: Configuring NIC Ethernet 2 using static ip 172.28.128.5 DEBUG winrm: powershell executing: netsh interface ip set address "Ethernet 2" static 172.28.128.5 255.255.255.0 DEBUG winrmshell: Output: {:data=>[{:stdout=>"\r\n"}], :exitcode=>0} INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::Network:0x000000031297d0 INFO winrm: Checking whether WinRM is ready... DEBUG provider: Searching for cap: winrm_info DEBUG provider: Checking in: virtualbox INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: Searching for SSH port: 22 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG ssh: Checking key permissions: /home/user/.vagrant.d/insecure_private_key DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox INFO provider: Execute capability: forwarded_ports #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG winrmshell: initializing WinRMShell INFO winrmshell: Attempting to connect to WinRM... INFO winrmshell: - Host: 127.0.0.1 INFO winrmshell: - Port: 5985 INFO winrmshell: - Username: vagrant INFO winrmshell: - Transport: negotiate DEBUG winrmshell: [WinRM] opening remote shell on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell E003D230-78AD-49F9-AC68-E5B5B7BB310D is open on http://127.0.0.1:5985/wsman DEBUG winrmshell: Output: {:data=>[{:stdout=>"win8x86-enterprise"}, {:stdout=>"\r\n"}], :exitcode=>0} INFO winrm: WinRM is ready! DEBUG guest: Searching for cap: landrush_ip_installed DEBUG guest: Checking in: windows DEBUG guest: Found cap: landrush_ip_installed in windows INFO guest: Execute capability: landrush_ip_installed #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> DEBUG winrm: powershell executing: try { if(Get-Command C:\landrush-ip.exe){ C:\landrush-ip.exe -v exit 0 } } Catch { Write-Host "0" exit 0 }

DEBUG winrmshell: Output: {:data=>[{:stdout=>"0"}, {:stdout=>"\n"}], :exitcode=>0} INFO interface: info: Landrush IP not installed in guest yet (or it's an outdated version). Installing now. INFO interface: info: ==> vagrant-win8x86-enterprise: Landrush IP not installed in guest yet (or it's an outdated version). Installing now. ==> vagrant-win8x86-enterprise: Landrush IP not installed in guest yet (or it's an outdated version). Installing now. INFO winrm: Checking whether WinRM is ready... DEBUG provider: Searching for cap: winrm_info DEBUG provider: Checking in: virtualbox INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: Searching for SSH port: 22 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG ssh: Checking key permissions: /home/user/.vagrant.d/insecure_private_key DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox DEBUG provider: Searching for cap: forwarded_ports DEBUG provider: Checking in: virtualbox DEBUG provider: Found cap: forwarded_ports in virtualbox INFO provider: Execute capability: forwarded_ports #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: read_forward_ports: uuid=39a0d68c-9888-4d2a-9e52-3c0b884ea926 active_only=false INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999 DEBUG subprocess: Exit status: 0 DEBUG virtualbox_5_1: - [1, "rdp", 3389, 3389] DEBUG virtualbox_5_1: - [1, "ssh", 2222, 22] DEBUG virtualbox_5_1: - [1, "winrm", 5985, 5985] DEBUG virtualbox_5_1: - [1, "winrm-ssl", 55986, 5986] DEBUG winrmshell: initializing WinRMShell INFO winrmshell: Attempting to connect to WinRM... INFO winrmshell: - Host: 127.0.0.1 INFO winrmshell: - Port: 5985 INFO winrmshell: - Username: vagrant INFO winrmshell: - Transport: negotiate DEBUG winrmshell: [WinRM] opening remote shell on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell E84DAE90-AF5E-4E2D-B1A1-8B93CB42AF62 is open on http://127.0.0.1:5985/wsman DEBUG winrmshell: Output: {:data=>[{:stdout=>"win8x86-enterprise"}, {:stdout=>"\r\n"}], :exitcode=>0} INFO winrm: WinRM is ready! DEBUG guest: Searching for cap: landrush_ip_install DEBUG guest: Checking in: windows DEBUG guest: Found cap: landrush_ip_install in windows INFO guest: Execute capability: landrush_ip_install #<Vagrant::Machine: vagrant-win8x86-enterprise (VagrantPlugins::ProviderVirtualBox::Provider)> DEBUG winrm: powershell executing: $Arch = "x64" if ("%PROCESSOR_ARCHITECTURE%" -eq "x86") { if (not defined PROCESSOR_ARCHITEW6432) { $Arch = "x86" } } Write-Host $Arch exit 0

DEBUG winrmshell: Output: {:data=>[{:stdout=>"x64"}, {:stdout=>"\n"}], :exitcode=>0} INFO winrm: Uploading: /home/user/.vagrant.d/gems/gems/landrush-ip-0.2.5/util/dist/landrush-ip-windows_amd64.exe to C:\landrush-ip.exe DEBUG winrmshell: [WinRM] opening remote shell on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell E07F6687-D77E-4DE6-94CA-8895A3B87979 is open on http://127.0.0.1:5985/wsman DEBUG winrmshell: creating hash for file C:\landrush-ip.exe DEBUG winrmshell: Running check_files.ps1 DEBUG winrmshell: @{ DEBUG winrmshell: "C:\landrush-ip.exe" = "fa69029c4daa717040566415db4fcec3" DEBUG winrmshell: } DEBUG winrmshell: File C:\landrush-ip.exe is up to date, skipping DEBUG winrmshell: No remote files to decode, skipping DEBUG winrmshell: Uploaded 1 items dirty_check: (0m0.98s) stream_files: (0m0.00s) decode: (0m0.00s) DEBUG winrmshell: [WinRM] closing remote shell E07F6687-D77E-4DE6-94CA-8895A3B87979 on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell E07F6687-D77E-4DE6-94CA-8895A3B87979 closed INFO warden: Calling OUT action: #LandrushIp::Action::Install:0x000000031297f8 INFO warden: Calling OUT action: #Landrush::Action::RedirectDns:0x00000003129820 INFO interface: error: [landrush] hostname win8x86-enterprise does not match the configured TLD: vagrant.test INFO interface: error: ==> vagrant-win8x86-enterprise: [landrush] hostname win8x86-enterprise does not match the configured TLD: vagrant.test ==> vagrant-win8x86-enterprise: [landrush] hostname win8x86-enterprise does not match the configured TLD: vagrant.test INFO interface: error: [landrush] You will not be able to access win8x86-enterprise from the host INFO interface: error: ==> vagrant-win8x86-enterprise: [landrush] You will not be able to access win8x86-enterprise from the host ==> vagrant-win8x86-enterprise: [landrush] You will not be able to access win8x86-enterprise from the host INFO interface: info: [landrush] adding machine entry: win8x86-enterprise => 172.28.128.5 INFO interface: info: ==> vagrant-win8x86-enterprise: [landrush] adding machine entry: win8x86-enterprise => 172.28.128.5 ==> vagrant-win8x86-enterprise: [landrush] adding machine entry: win8x86-enterprise => 172.28.128.5 INFO warden: Calling OUT action: #Landrush::Action::Setup:0x00000003129848 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::ClearNetworkInterfaces:0x00000003129870 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x00000003168bd8 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::SyncedFolders:0x000000031b36b0 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::SyncedFolderCleanup:0x000000031f1e10 INFO warden: Calling OUT action: #VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x000000032409c0 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x000000032891c0 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x000000032bc840 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::PrepareForwardedPortCollisionParams:0x000000032bc868 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::EnvSet:0x000000032bc890 INFO interface: info: Machine already provisioned. Run vagrant provision or use the --provision flag to force provisioning. Provisioners marked to run always will still run. INFO interface: info: ==> vagrant-win8x86-enterprise: Machine already provisioned. Run vagrant provision or use the --provision ==> vagrant-win8x86-enterprise: flag to force provisioning. Provisioners marked to run always will still run. ==> vagrant-win8x86-enterprise: Machine already provisioned. Run vagrant provision or use the --provision ==> vagrant-win8x86-enterprise: flag to force provisioning. Provisioners marked to run always will still run. INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Provision:0x000000033059f0 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::ClearForwardedPorts:0x00000003305a40 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::SetName:0x0000000334aa78 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CleanMachineFolder:0x0000000334aaa0 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x0000000334aac8 INFO warden: Calling OUT action: #<Proc:0x00000002f943e8@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x000000015af068 INFO warden: Calling OUT action: #<Proc:0x000000012a3bd0@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x0000000229ca50 INFO warden: Calling OUT action: #<Proc:0x000000021ceab0@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x00000001950988 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::BoxCheckOutdated:0x00000001a65f58 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::ConfigValidate:0x00000001a65fa8 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000001a65fd0 INFO warden: Calling OUT action: #<Proc:0x00000003386140@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #<Proc:0x0000000310c5b8@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #<Proc:0x00000003091660@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x000000033861e0 INFO warden: Calling OUT action: #<Proc:0x000000030ba808@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #<Proc:0x0000000306e818@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x00000003386230 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::DiscardState:0x00000003386280 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x000000033862a8 INFO warden: Calling OUT action: #<Proc:0x00000003322000@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x00000001a66070 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000001a660c0 INFO warden: Calling OUT action: #Vagrant::Action::Builtin::ConfigValidate:0x00000001a66138 INFO warden: Calling OUT action: #<Proc:0x00000001889608@/nix/store/hhdg3b7lqwb4zb7dvvr9nkmjyi6spj2z-vagrant-1.8.5/opt/vagrant/embedded/gems/gems/vagrant-1.8.5/lib/vagrant/action/warden.rb:94 (lambda)> INFO warden: Calling OUT action: #Vagrant::Action::Builtin::Call:0x00000002fcc4c8 INFO warden: Calling OUT action: #VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000002fcc4f0 INFO interface: Machine: action ["reload", "end", {:target=>:"vagrant-win8x86-enterprise"}] INFO environment: Released process lock: machine-action-e3bf144ff5b1985681028ecea69da74d DEBUG environment: Attempting to acquire process-lock: dotlock INFO environment: Acquired process lock: dotlock INFO environment: Released process lock: dotlock INFO subprocess: Starting process: ["/home/user/.nix-profile/bin/VBoxManage", "showvminfo", "39a0d68c-9888-4d2a-9e52-3c0b884ea926", "--machinereadable"] INFO subprocess: Command not in installer, restoring original environment... DEBUG subprocess: Selecting on IO DEBUG subprocess: stdout: name="win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593" groups="/" ostype="Windows 8 (32-bit)" UUID="39a0d68c-9888-4d2a-9e52-3c0b884ea926" CfgFile="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.vbox" SnapFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Snapshots" LogFldr="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/Logs" hardwareuuid="39a0d68c-9888-4d2a-9e52-3c0b884ea926" memory=1536 pagefusion="off" vram=256 cpuexecutioncap=100 hpet="off" chipset="piix3" firmware="BIOS" cpus=1 pae="on" longmode="off" triplefaultreset="off" apic="on" x2apic="off" cpuid-portability-level=0 bootmenu="messageandmenu" boot1="disk" boot2="dvd" boot3="none" boot4="none" acpi="on" ioapic="on" biosapic="apic" biossystemtimeoffset=0 rtcuseutc="on" hwvirtex="on" nestedpaging="on" largepages="off" vtxvpid="on" vtxux="on" paravirtprovider="default" effparavirtprovider="hyperv" VMState="running" VMStateChangeTime="2016-10-09T00:56:03.329000000" monitorcount=1 accelerate3d="off" accelerate2dvideo="off" teleporterenabled="off" teleporterport=0 teleporteraddress="" teleporterpassword="" tracing-enabled="off" tracing-allow-vm-access="off" tracing-config="" autostart-enabled="off" autostart-delay=0 defaultfrontend="" storagecontrollername0="IDE Controller" storagecontrollertype0="PIIX4" storagecontrollerinstance0="0" storagecontrollermaxportcount0="2" storagecontrollerportcount0="2" storagecontrollerbootable0="on" storagecontrollername1="SATA Controller" storagecontrollertype1="IntelAhci" storagecontrollerinstance1="0" storagecontrollermaxportcount1="30" storagecontrollerportcount1="1" storagecontrollerbootable1="on" "IDE Controller-0-0"="none" "IDE Controller-0-1"="none" "IDE Controller-1-0"="emptydrive" "IDE Controller-IsEjected"="off" "IDE Controller-1-1"="none" "SATA Controller-0-0"="/home/user/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise-disk1.vmdk" "SATA Controller-ImageUUID-0-0"="748e62e5-aa69-4c01-af91-8b49f3ae50df" natnet1="nat" macaddress1="0800277EA658" cableconnected1="on" nic1="nat" nictype1="82540EM" nicspeed1="0" mtu="0" sockSnd="64" sockRcv="64" tcpWndSnd="64" tcpWndRcv="64" Forwarding(0)="rdp,tcp,,3389,,3389" Forwarding(1)="ssh,tcp,127.0.0.1,2222,,22" Forwarding(2)="winrm,tcp,,5985,,5985" Forwarding(3)="winrm-ssl,tcp,127.0.0.1,55986,,5986" hostonlyadapter2="vboxnet1" macaddress2="080027D3162D" cableconnected2="on" nic2="hostonly" nictype2="82540EM" nicspeed2="0" nic3="none" nic4="none" nic5="none" nic6="none" nic7="none" nic8="none" hidpointing="ps2mouse" hidkeyboard="ps2kbd" uart1="off" uart2="off" uart3="off" uart4="off" lpt1="off" lpt2="off" audio="pulse" clipboard="disabled" draganddrop="disabled" SessionName="GUI/Qt" VideoMode="1024,768,32"@0,0 1 vrde="on" vrdeport=5908 vrdeports="5908" vrdeaddress="127.0.0.1" vrdeauthtype="null" vrdemulticon="off" vrdereusecon="off" vrdevideochannel="off" vrdeproperty[TCP/Ports]="5908" vrdeproperty[TCP/Address]="127.0.0.1" vrdeproperty[VideoChannel/Enabled]= vrdeproperty[VideoChannel/Quality]= vrdeproperty[VideoChannel/DownscaleProtection]= vrdeproperty[Client/DisableDisplay]= vrdeproperty[Client/DisableInput]= vrdeproperty[Client/DisableAudio]= vrdeproperty[Client/DisableUSB]= vrdeproperty[Client/DisableClipboard]= vrdeproperty[Client/DisableUpstreamAudio]= vrdeproperty[Client/DisableRDPDR]= vrdeproperty[H3DRedirect/Enabled]= vrdeproperty[Security/Method]= vrdeproperty[Security/ServerCertificate]= vrdeproperty[Security/ServerPrivateKey]= vrdeproperty[Security/CACertificate]= vrdeproperty[Audio/RateCorrectionMode]= vrdeproperty[Audio/LogPath]= usb="off" ehci="off" xhci="off" VRDEActiveConnection="off" VRDEClients=0 vcpenabled="off" vcpscreens=0 DEBUG subprocess: stdout: eanor/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593/win8x86-enterprise_vagrant-win8x86-enterprise_1475973871209_58593.webm" vcpwidth=1024 vcpheight=768 vcprate=512 vcpfps=25 GuestMemoryBalloon=0 GuestOSType="Windows8" GuestAdditionsRunLevel=0 DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO environment: Running hook: environment_unload INFO runner: Preparing hooks for middleware sequence... INFO runner: 1 hooks defined. INFO runner: Running action: environment_unload #Vagrant::Action::Builder:0x00000003555bb0 DEBUG winrmshell: [WinRM] closing remote shell E84DAE90-AF5E-4E2D-B1A1-8B93CB42AF62 on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell E84DAE90-AF5E-4E2D-B1A1-8B93CB42AF62 closed DEBUG winrmshell: [WinRM] closing remote shell 335453B8-5EDA-4ABF-A67F-1B232B496F12 on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell 335453B8-5EDA-4ABF-A67F-1B232B496F12 closed DEBUG winrmshell: [WinRM] closing remote shell 9DB2DB87-1218-4B4A-A936-DF002BB73DF3 on http://127.0.0.1:5985/wsman DEBUG winrmshell: [WinRM] remote shell 9DB2DB87-1218-4B4A-A936-DF002BB73DF3 closed DEBUG winrmshell: [WinRM] closing remote shell 1C51E51E-5977-486F-B282-FFF319DD7051 on http://127.0.0.1:5985/wsman

hferentschik commented 7 years ago

This looks like a duplicate of issue #259. It is fixed on master and was caused by action hooks being executed in the wrong order.

If you can/like you could build a version of master and verify that the issue is indeed resolved. In case you don't want to build the gem yourself, you can try this gem which I've built of current master.

proteansec commented 7 years ago

Hi, this is not resolved. I've build the new plugin manually by using rake build:

vagrant plugin list

landrush (1.2.0.dev)

  • Version Constraint: 1.2.0.dev

However, when doing vagrant reload, the following is displayed in the stdout - notice the highlighted line, which says whether the landrush server has crashed (actually it hasn't even started).

==> vagrant-win8x86-enterprise: Attempting graceful shutdown of VM... ==> vagrant-win8x86-enterprise: Clearing any previously set forwarded ports... ==> vagrant-win8x86-enterprise: Clearing any previously set network interfaces... ==> vagrant-win8x86-enterprise: Preparing network interfaces based on configuration... vagrant-win8x86-enterprise: Adapter 1: nat vagrant-win8x86-enterprise: Adapter 2: hostonly ==> vagrant-win8x86-enterprise: Forwarding ports... vagrant-win8x86-enterprise: 3389 (guest) => 3389 (host) (adapter 1) vagrant-win8x86-enterprise: 5985 (guest) => 5985 (host) (adapter 1) vagrant-win8x86-enterprise: 5986 (guest) => 55986 (host) (adapter 1) vagrant-win8x86-enterprise: 22 (guest) => 2222 (host) (adapter 1) ==> vagrant-win8x86-enterprise: Running 'pre-boot' VM customizations... ==> vagrant-win8x86-enterprise: Booting VM... ==> vagrant-win8x86-enterprise: Waiting for machine to boot. This may take a few minutes... vagrant-win8x86-enterprise: WinRM address: 127.0.0.1:5985 vagrant-win8x86-enterprise: WinRM username: vagrant vagrant-win8x86-enterprise: WinRM execution_time_limit: PT2H vagrant-win8x86-enterprise: WinRM transport: negotiate ==> vagrant-win8x86-enterprise: Machine booted and ready! ==> vagrant-win8x86-enterprise: Checking for guest additions in VM... vagrant-win8x86-enterprise: No guest additions were detected on the base box for this VM! Guest vagrant-win8x86-enterprise: additions are required for forwarded ports, shared folders, host only vagrant-win8x86-enterprise: networking, and more. If SSH fails on this machine, please install vagrant-win8x86-enterprise: the guest additions and repackage the box to continue. vagrant-win8x86-enterprise: vagrant-win8x86-enterprise: This is not an error message; everything may continue to work properly, vagrant-win8x86-enterprise: in which case you may ignore this message. Stopping daemon... Pid 9879 is not running. Has daemon crashed? ==> vagrant-win8x86-enterprise: Setting hostname... ==> vagrant-win8x86-enterprise: Configuring and enabling network interfaces... ==> vagrant-win8x86-enterprise: Automatic installation for Landrush IP not enabled Vagrant attempted to execute the capability 'read_host_visible_ip_address' on the detect guest OS 'windows', but the guest doesn't support that capability. This capability is required for your configuration of Vagrant. Please either reconfigure Vagrant to avoid this capability or fix the issue by creating the capability.

If I try to start it manually, the following happens:

vagrant landrush start

vagrant landrush status

Daemon status: unknown /home/user/.vagrant.d/data/landrush/run/landrush.pid exists, but process is not running Check log file: /home/user/.vagrant.d/data/landrush/log/landrush.log

The log file is not there:

find /home/user/.vagrant.d/data/landrush/

/home/user/.vagrant.d/data/landrush/ /home/user/.vagrant.d/data/landrush/run /home/user/.vagrant.d/data/landrush/run/landrush.pid /home/user/.vagrant.d/data/landrush/dependent_vms /home/user/.vagrant.d/data/landrush/dependent_vms/win8x86-enterprise /home/user/.vagrant.d/data/landrush/config.json

I should stop the daemon and remove the pid file:

vagrant landrush stop

rm /home/user/.vagrant.d/data/landrush/run/landrush.pid

Then start the daemon and check the landrush status:

vagrant landrush start

vagrant landrush status

Daemon status: unknown /home/user/.vagrant.d/data/landrush/run/landrush.pid exists, but process is not running Check log file: /home/user/.vagrant.d/data/landrush/log/landrush.log

The log file is not present. Let me use the --debug switch to start landrush:

INFO global: Loading plugins! INFO manager: Registered plugin: vagrant-share INFO manager: Registered plugin: winrm INFO manager: Registered plugin: hosts INFO manager: Registered plugin: HostManager INFO manager: Registered plugin: landrush INFO manager: Registered plugin: LandrushIp INFO vagrant: vagrant invoked: ["landrush", "start", "--debug"] DEBUG vagrant: Creating Vagrant environment INFO environment: Environment initialized (#Vagrant::Environment:0x00000002d293b0) INFO environment: - cwd: /home/user/win8x86-enterprise INFO environment: Home path: /home/user/.vagrant.d INFO environment: Local data path: /home/user/win8x86-enterprise/.vagrant DEBUG environment: Creating: /home/user/win8x86-enterprise/.vagrant INFO environment: Running hook: environment_plugins_loaded INFO runner: Preparing hooks for middleware sequence... INFO runner: 1 hooks defined. INFO runner: Running action: environment_plugins_loaded #Vagrant::Action::Builder:0x000000025c6d48 INFO environment: Running hook: environment_load INFO runner: Preparing hooks for middleware sequence... INFO runner: 1 hooks defined. INFO runner: Running action: environment_load #Vagrant::Action::Builder:0x00000002226260 INFO cli: CLI: [] "landrush" ["start"] DEBUG cli: Invoking command class: Landrush::Command ["start"] INFO environment: Running hook: environment_unload INFO loader: Set :root = ["#Pathname:/home/user/win8x86-enterprise/Vagrantfile"] DEBUG loader: Populating proc cache for #Pathname:/home/user/win8x86-enterprise/Vagrantfile DEBUG loader: Load procs for pathname: /home/user/win8x86-enterprise/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 host: Autodetecting host type for [#<Vagrant::Environment: /home/user/win8x86-enterprise>] DEBUG host: Trying: ubuntu 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: debian DEBUG host: Trying: bsd DEBUG host: Trying: linux INFO host: Detected: linux! INFO runner: Preparing hooks for middleware sequence... INFO runner: 1 hooks defined. INFO runner: Running action: environment_unload #Vagrant::Action::Builder:0x00000002dda8e0

The landrush is unable to start, even if I try manually starting it.

hferentschik commented 7 years ago

Which version of Vagrant are you using?

In your source code checkout can you run:

$ bundle exec rake features FEATURE=features/vagrant_reload.feature

This should be running a cucumber test to test the reload behavior. I would be interested in what it reports.

proteansec commented 7 years ago

Using Vagrant 1.8.5.

I haven't actually executed the command you provided, since it's quite difficult to run bundle+vagrant on my system; I'm building the gem in docker, then importing it on my own system. In any case, I've taken a look at the cucumber rule and crated the following Vagrantfile:

Vagrant.configure("2") do |config| config.vm.box = 'debian/jessie64' config.vm.synced_folder '.', '/vagrant', disabled: true config.landrush.enabled = true end

Then I'm putting the machine up, which works without any issues.

vagrant up --provider virtualbox

Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'debian/jessie64' could not be found. Attempting to find and install... default: Box Provider: virtualbox default: Box Version: >= 0 ==> default: Loading metadata for box 'debian/jessie64' default: URL: https://atlas.hashicorp.com/debian/jessie64 ==> default: Adding box 'debian/jessie64' (v8.6.1) for provider: virtualbox default: Downloading: https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.6.1/providers/virtualbox.box ==> default: Successfully added box 'debian/jessie64' (v8.6.1) for 'virtualbox'! ==> default: Importing base box 'debian/jessie64'... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'debian/jessie64' is up to date... ==> default: Setting the name of the VM: cucumber_default_1476128988188_73850 ==> default: Clearing any previously set network interfaces... ==> default: [landrush] virtualbox requires an additional private network; adding it ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat default: Adapter 2: hostonly ==> default: Forwarding ports... default: 22 (guest) => 2222 (host) (adapter 1) ==> default: Running 'pre-boot' VM customizations... ==> default: Booting VM... ==> default: Waiting for machine to boot. This may take a few minutes... default: SSH address: 127.0.0.1:2222 default: SSH username: vagrant default: SSH auth method: private key default: default: Vagrant insecure key detected. Vagrant will automatically replace default: this with a newly generated keypair for better security. default: default: Inserting generated public key within guest... default: Removing insecure key from the guest if it's present... default: Key inserted! Disconnecting and reconnecting using new SSH key... ==> default: Machine booted and ready! ==> default: Checking for guest additions in VM... default: No guest additions were detected on the base box for this VM! Guest default: additions are required for forwarded ports, shared folders, host only default: networking, and more. If SSH fails on this machine, please install default: the guest additions and repackage the box to continue. default: default: This is not an error message; everything may continue to work properly, default: in which case you may ignore this message. ==> default: Configuring and enabling network interfaces... ==> default: Automatic installation for Landrush IP not enabled ==> default: [landrush] setting up machine's DNS to point to our server ==> default: [landrush] network: :forwarded_port, {:guest=>22, :host=>2222, :host_ip=>"127.0.0.1", :id=>"ssh", :auto_correct=>true, :protocol=>"tcp"} ==> default: [landrush] network: :private_network, {:type=>:dhcp, :protocol=>"tcp", :id=>"b535f69c-c4b0-42f1-99bb-bccf84c4a185"} [landrush] Using eth1 (172.28.128.10) ==> default: [landrush] adding machine entry: cucumber.vagrant.test => 172.28.128.10 ==> default: [landrush] starting dns server [landrush] Using eth1 (172.28.128.10) Your host was detected as 'dnsmasq_installed' for which the host capability 'dnsmasq_installed' is not available. Check the documentation for the manual instructions to configure the visibility on the host.

==> default: Machine 'default' has a post vagrant up message. This is a message ==> default: from the creator of the Vagrantfile, and not from Vagrant itself: ==> default: ==> default: Vanilla Debian box. See https://atlas.hashicorp.com/debian/ for help and bug reports

Let's check if the landrush server is running:

vagrant landrush status

Daemon status: running pid=1104

Let's stop the daemon, which works:

vagrant landrush stop

Stopping daemon... Sending KILL to process 1104...

vagrant landrush status

Daemon status: stopped

Let's then try to start it again, which reports problems:

vagrant landrush start

vagrant landrush status

Daemon status: unknown /home/user/.vagrant.d/data/landrush/run/landrush.pid exists, but process is not running Check log file: /home/user/.vagrant.d/data/landrush/log/landrush.log

However if I issue a reload on the VM, the following happens:

vagrant reload

==> default: Attempting graceful shutdown of VM... ==> default: Checking if box 'debian/jessie64' is up to date... ==> default: Clearing any previously set forwarded ports... ==> default: Clearing any previously set network interfaces... ==> default: [landrush] virtualbox requires an additional private network; adding it ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat default: Adapter 2: hostonly ==> default: Forwarding ports... default: 22 (guest) => 2222 (host) (adapter 1) ==> default: Running 'pre-boot' VM customizations... ==> default: Booting VM... ==> default: Waiting for machine to boot. This may take a few minutes... default: SSH address: 127.0.0.1:2222 default: SSH username: vagrant default: SSH auth method: private key ==> default: Machine booted and ready! ==> default: Checking for guest additions in VM... default: No guest additions were detected on the base box for this VM! Guest default: additions are required for forwarded ports, shared folders, host only default: networking, and more. If SSH fails on this machine, please install default: the guest additions and repackage the box to continue. default: default: This is not an error message; everything may continue to work properly, default: in which case you may ignore this message. ==> default: [landrush] removing machine entry: cucumber.vagrant.test ==> default: Configuring and enabling network interfaces... ==> default: Automatic installation for Landrush IP not enabled ==> default: [landrush] setting up machine's DNS to point to our server ==> default: [landrush] network: :forwarded_port, {:guest=>22, :host=>2222, :host_ip=>"127.0.0.1", :id=>"ssh", :auto_correct=>true, :protocol=>"tcp"} ==> default: [landrush] network: :private_network, {:type=>:dhcp, :protocol=>"tcp", :id=>"3d2848e8-114d-4fc7-8928-18dbc70cd7b6"} [landrush] Using eth1 (172.28.128.10) ==> default: [landrush] adding machine entry: cucumber.vagrant.test => 172.28.128.10 ==> default: [landrush] starting dns server [landrush] Using eth1 (172.28.128.10) Your host was detected as 'dnsmasq_installed' for which the host capability 'dnsmasq_installed' is not available. Check the documentation for the manual instructions to configure the visibility on the host. ==> default: Machine already provisioned. Run vagrant provision or use the --provision ==> default: flag to force provisioning. Provisioners marked to run always will still run.

==> default: Machine 'default' has a post vagrant up message. This is a message ==> default: from the creator of the Vagrantfile, and not from Vagrant itself: ==> default: ==> default: Vanilla Debian box. See https://atlas.hashicorp.com/debian/ for help and bug reports

When checking the status of the daemon, it works again:

vagrant landrush status

Daemon status: running pid=26331

Therefore, there's something wrong with the stopping/starting the landrush daemon - this is regarding jessie VM. However, when booting the Windows image, the reload command doesn't bring the landrush daemon back up if it has been stopped/crashed - the jessie image does. But let's take this one step at a time.

hferentschik commented 5 years ago

Closing the issue since I am unable to re-produce it.