From 10883b3be69aa4cbf0b47a85b98c9764fc649c42 Mon Sep 17 00:00:00 2001 From: canausa Date: Mon, 21 Oct 2013 10:19:42 -0400 Subject: [PATCH] Add --no-parallel to provision --- plugins/commands/provision/command.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/commands/provision/command.rb b/plugins/commands/provision/command.rb index 6d59dc4cc..563ae66f4 100644 --- a/plugins/commands/provision/command.rb +++ b/plugins/commands/provision/command.rb @@ -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