Bring up vagrant boxes simultaneously -


vagrant brings 1 box @ time. there way make vagrant bring boxes @ same time?

the vagrantfile configuration i'm using several boxes has following format:

vagrant.configure("2") |config|   config.vm.define :master |master|     # master config...   end    config.vm.define :slave1 |slave|     # slave config...   end end 

now, when running > vagrant up vagrant start setting master , once done set slave1.

depending on provider, can pass pass --parallel flag vagrant up. vagrant --parallel 

as of march 17th, mitchell hashimoto noted virtualbox not provider supports parallelism. reference


Comments

Popular posts from this blog

c - CUDA code not processing if block properly -

Android Capture Image From Camera -

java - Values Clustering -