mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-08 00:02:44 -04:00
Add --no-parallel to provision
This commit is contained in:
parent
673a06b54d
commit
10883b3be6
1 changed files with 5 additions and 0 deletions
|
|
@ -14,6 +14,11 @@ module VagrantPlugins
|
|||
"Enable only certain provisioners, by type.") do |list|
|
||||
options[:provision_types] = list.map { |type| type.to_sym }
|
||||
end
|
||||
|
||||
o.on("--[no-]parallel",
|
||||
"Enable or disable parallelism if provider supports it.") do |parallel|
|
||||
options[:parallel] = parallel
|
||||
end
|
||||
end
|
||||
|
||||
# Parse the options
|
||||
|
|
|
|||
Loading…
Reference in a new issue