Update Environment::Remote to match Environment changes

Since the `initialize` method is copied over, we need to mirror changes
from #250 into that copy
This commit is contained in:
Paul Hinze 2022-04-12 16:55:12 -05:00
parent b88123fab4
commit e5a75b78ec
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -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.