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++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

xcode - Swift Playground - Files are not readable -

jboss7.x - JBoss AS 7.3 vs 7.4 and differences -