I think the quickest test for this is to open up two terminal sessions and vagrant up both of them. I remember reading a guy trying this and VB throwing up.
VirtualBox also has a huge problem with user sessions which needs to be solved.
--
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+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I think the quickest test for this is to open up two terminal sessions and vagrant up both of them. I remember reading a guy trying this and VB throwing up.
VirtualBox also has a huge problem with user sessions which needs to be solved.
Vagrant.configure("2") do |config|
(1..10).each do |i|
config.vm.provider "virtualbox" do |v|
v.linked_clone = true
end
config.vm.define "test-#{i}" do |node|
node.vm.box = "debian/jessie64"
end
end
end