From 77e04e2b770919b5289df56bfa9688853ec7f889 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 29 Aug 2014 08:32:04 -0700 Subject: [PATCH] commands/provision: don't advertise parallel [GH-4398] --- plugins/commands/provision/command.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plugins/commands/provision/command.rb b/plugins/commands/provision/command.rb index f05607158..a67084f75 100644 --- a/plugins/commands/provision/command.rb +++ b/plugins/commands/provision/command.rb @@ -18,11 +18,6 @@ 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