From e5a75b78ec2d01269ec3665fe0bdedf49477dacd Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Tue, 12 Apr 2022 16:55:12 -0500 Subject: [PATCH] Update Environment::Remote to match Environment changes Since the `initialize` method is copied over, we need to mirror changes from #250 into that copy --- lib/vagrant/environment/remote.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vagrant/environment/remote.rb b/lib/vagrant/environment/remote.rb index 43d0bf16b..b0f2a8542 100644 --- a/lib/vagrant/environment/remote.rb +++ b/lib/vagrant/environment/remote.rb @@ -63,10 +63,10 @@ module Vagrant # Call the hooks that does not require configurations to be loaded # by using a "clean" action runner - hook(:environment_plugins_loaded, runner: Action::Runner.new(env: self)) + hook(:environment_plugins_loaded, runner: Action::PrimaryRunner.new(env: self)) # Call the environment load hooks - hook(:environment_load, runner: Action::Runner.new(env: self)) + hook(:environment_load, runner: Action::PrimaryRunner.new(env: self)) end # Returns the collection of boxes for the environment.