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