[vagrant-up] ssh agent issues...

2017-03-22 Thread Krist van Besien
Hello, When I do "vagrant ssh" in to one of my boxes the ssh key gets added to my ssh agent. So each time I spin up a box, and ssh in to it, another key gets added. And this is a problem, because once you have a lot of keys there ssh stops becoming usefull. The problem is that when you ssh in

[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

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

2017-03-27 Thread Krist van Besien
nt=webmail> > > <#CAHqq0ewcBBpzDXrA6s8ZmU4TdoRmef-Q8F0u57O9yD5M6DdrnA@mail.gmail.com_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > On Thu, Mar 23, 2017 at 9:35 AM, Krist van Besien <krist.v...@gmail.com > > wrote: > >> Hello, >> >> If I do this: &g

[vagrant-up] config.vm.synced_folder ignored in default Vagrantfile

2017-07-07 Thread Krist van Besien
Hello all, I created my own box, and the box, and the Vagrantfile included in the box has the following content: Vagrant.configure("2") do |config| config.vm.provider :libvirt do |libvirt| libvirt.disk_bus = 'virtio' end config.vm.synced_folder ".",

Re: [vagrant-up] config.vm.synced_folder ignored in default Vagrantfile

2017-07-12 Thread Krist van Besien
(this will overwrite the one you previously > created). > > ‘vagrant up’ on the other hand will start the VM specified by the > Vagrantfile. > > On 7 Jul 2017, at 16:44, Krist van Besien wrote: > > Hello all, > > I created my own box, and the box, and the Vagrantfile inc