Merge pull request #2404 from canausa/patch-1
commands/provision: add --no-parallel
This commit is contained in:
commit
af66984ca1
|
@ -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 New Issue