Hello,

I am attempting to utilize a Vagrantfile with two providers 
(vmware_workstation, virtualbox), but when I issue "vagrant up" it tries to 
bring up both boxes using virtualbox. If I use "vagrant up <machine_name>" 
on each box individually, it will use the correct provider for each box. 
This is my Vagrantfile:

#*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.define "robot_test_engine" do |robot_test_engine_9070|
    robot_test_engine_9070.ssh.username = "administrator"
    robot_test_engine_9070.ssh.password = ******
    robot_test_engine_9070.vm.box = 
"/TRM_DATA/vagrant/jeff_vmware_test/packer_virtualbox-ovf_virtualbox.box"
    config.vm.provider "virtualbox" do |vb|
        vb.customize ["modifyvm", :id, "--vrdeport", "9077"]
    end
end
config.vm.define "robot_test_engine_2" do |robot_test_engine_9071|
    robot_test_engine_9071.ssh.username = "administrator"
    robot_test_engine_9071.ssh.password = *******
    robot_test_engine_9071.vm.box = 
"/TRM_DATA/vagrant/jeff_vmware_test/packer_vmware-vmx_vmware.box"
    config.vm.provider "vmware_workstation" do |vw|
    end
end
end

Did I do something incorrectly in the Vagrantfile? Is a simple "vagrant up" 
usable when trying to configure for multiple providers?

Any help is appreciated!

Thanks,
Jeff

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
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 vagrant-up+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/98182d94-5ebe-4d40-82ef-6e3a615b37b3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to