Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Specify --no-parallel flag inside Vagrantfile

According to the documentation http://docs.vagrantup.com/v2/cli/up.html vagrant up has optional parameter --no-parallel

Is it possible to specify this flag inside of Vagrantfile or at least warn user if it's not specified?

like image 608
TermiT Avatar asked Mar 04 '15 20:03

TermiT


1 Answers

Got an answer from original repo environment test suite:

ENV['VAGRANT_NO_PARALLEL'] = 'yes'

Edit:

Well, unfortunately, I have to say It's not an option. Seems like option works for env, where vagrant is launched, but not in Vagrantfile

$ VAGRANT_NO_PARALLEL=yes vagrant up - works

$ vagrant up with Vagrantfile containint VAGRANT_NO_PARALLEL - fails

like image 61
Meredian Avatar answered Oct 04 '22 01:10

Meredian