From 4f0082adfa8dc97bd598d4f9de8bf50b56e06242 Mon Sep 17 00:00:00 2001 From: sophia Date: Mon, 18 Jul 2022 10:02:58 -0700 Subject: [PATCH] Fix provider options typo --- lib/vagrant/machine/remote.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/machine/remote.rb b/lib/vagrant/machine/remote.rb index dedce8f73..e98fa6db1 100644 --- a/lib/vagrant/machine/remote.rb +++ b/lib/vagrant/machine/remote.rb @@ -153,7 +153,7 @@ module Vagrant end def provider_options - @provider_options ||= Vagrant.plugin("2").manager.provider[provider_name].last + @provider_options ||= Vagrant.plugin("2").manager.providers[provider_name].last end def recover_machine(*_)