Re: [vagrant-up] Vagrant hangs when bringing up hosts in parallel.

2017-03-27 Thread Alvaro Miranda Aguilera
hello not sure what provider are you using, but in somes like virtualbox, when creating the VM from template, it gets decompressed to a fixed name before renaming so if you are doing more than one box at the time, you may hit a collision there On Mon, Mar 27, 2017 at 4:29 PM, Krist van Besien

Re: [vagrant-up] Vagrant hangs when bringing up hosts in parallel.

2017-03-27 Thread Krist van Besien
That helped, But did not explain why running in parallel cause the whole vagrant up to eventually hang somewhere... On Thursday, 23 March 2017 10:03:54 UTC+1, Alvaro Miranda Aguilera wrote: > > hello > > did you try this? > > >

Re: [vagrant-up] Vagrant hangs when bringing up hosts in parallel.

2017-03-23 Thread Alvaro Miranda Aguilera
hello did you try this? http://stackoverflow.com/questions/28864603/specify-no-parallel-flag-inside-vagrantfile Virusvrij. www.avast.com

[vagrant-up] Vagrant hangs when bringing up hosts in parallel.

2017-03-23 Thread Krist van Besien
Hello, If I do this: vagrant up gluster-{1..5} the boxes are brought up in parallel, and this almost always ends up hanging somewhere, usually during provisioning of one of the machines, or waiting for ssh If I do: for h in gluster-{1..5}; do vagrant up $h ; done the hosts all get booted