I've got the latest version of Vagrant and none of the Windows 208R2 boxes 
seem to want to work, all of them get stuck on :
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "showvminfo", 
"f165f26c-e646-4872-8605-ab0844412479", "--machinereadable"]
 INFO retryable: Retryable exception raised: 
#<WinRM::WinRMHTTPTransportError: Bad HTTP response returned from server 
(401).>


With the first line repeating continuously and the second interspersed 
every 8 or so lines.

This is what my VagrantFile looks like:


# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're 
doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  # Every Vagrant virtual environment requires a box to build off of.

  #config.vm.provision :shell, :path => "bootstrap.sh"

  config.vm.provider "virtualbox" do |v|
      v.memory = 1024
    v.cpus = 2
  end

  config.vm.communicator = "winrm"
  config.vm.guest = :windows
  config.vm.box = "opentable/win-2008r2-standard-amd64-nocm"
  #config.vm.box_url = 
"http://10.14.0.155/install/box/sles-11sp1-x64-vbox4210.box";

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example 
below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  config.vm.network "private_network", ip: "192.168.56.10"
  
  config.vm.provision :puppet do |puppet|
     puppet.manifest_file  = "init.pp"
    puppet.manifests_path = "tests"
    puppet.module_path = "build"
    puppet.options="--verbose"
   end
    
end

-- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to