From 43bb715c002c087f8fc1ed117d2a65d7e33898f3 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Tue, 30 Dec 2014 06:10:52 +0300 Subject: [PATCH] Enable provision with --provision-with flag --- plugins/commands/up/start_mixins.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/commands/up/start_mixins.rb b/plugins/commands/up/start_mixins.rb index e0aeb6de2..548d889ca 100644 --- a/plugins/commands/up/start_mixins.rb +++ b/plugins/commands/up/start_mixins.rb @@ -19,6 +19,8 @@ module VagrantPlugins parser.on("--provision-with x,y,z", Array, "Enable only certain provisioners, by type.") do |list| options[:provision_types] = list.map { |type| type.to_sym } + options[:provision_enabled] = true + options[:provision_ignore_sentinel] = true end end