Merge pull request #2404 from canausa/patch-1

commands/provision: add --no-parallel
This commit is contained in:
Mitchell Hashimoto 2013-10-23 23:13:04 -07:00
commit af66984ca1
1 changed files with 5 additions and 0 deletions

View File

@ -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