From b91d7203eb550a28a71d479233d62edd4d6230a5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 30 Jan 2013 19:49:18 -0800 Subject: [PATCH] Pass the start options into the actions so that they have effect --- plugins/commands/reload/command.rb | 2 +- plugins/commands/up/command.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/commands/reload/command.rb b/plugins/commands/reload/command.rb index fd7fd9c61..c4aebb75a 100644 --- a/plugins/commands/reload/command.rb +++ b/plugins/commands/reload/command.rb @@ -26,7 +26,7 @@ module VagrantPlugins @logger.debug("'reload' each target VM...") with_target_vms(argv) do |machine| - machine.action(:reload) + machine.action(:reload, options) end # Success, exit status 0 diff --git a/plugins/commands/up/command.rb b/plugins/commands/up/command.rb index 0802a6029..91d2f9fb8 100644 --- a/plugins/commands/up/command.rb +++ b/plugins/commands/up/command.rb @@ -30,7 +30,7 @@ module VagrantPlugins # Go over each VM and bring it up @logger.debug("'Up' each target VM...") with_target_vms(argv, :provider => options[:provider]) do |machine| - machine.action(:up) + machine.action(:up, options) end # Success, exit status 0