Add --no-parallel to provision
This commit is contained in:
parent
673a06b54d
commit
10883b3be6
|
@ -14,6 +14,11 @@ module VagrantPlugins
|
||||||
"Enable only certain provisioners, by type.") do |list|
|
"Enable only certain provisioners, by type.") do |list|
|
||||||
options[:provision_types] = list.map { |type| type.to_sym }
|
options[:provision_types] = list.map { |type| type.to_sym }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
o.on("--[no-]parallel",
|
||||||
|
"Enable or disable parallelism if provider supports it.") do |parallel|
|
||||||
|
options[:parallel] = parallel
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Parse the options
|
# Parse the options
|
||||||
|
|
Loading…
Reference in New Issue