From e0dbbcc04ce626c851eeba122ca45c66bfbf1342 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Mon, 26 Jun 2023 15:46:15 -0700 Subject: [PATCH] Use all insecure private key paths When constructing the ssh information, use all available insecure key paths for authentication. --- lib/vagrant/machine.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/machine.rb b/lib/vagrant/machine.rb index 5335f3a27..be3f749ec 100644 --- a/lib/vagrant/machine.rb +++ b/lib/vagrant/machine.rb @@ -502,7 +502,7 @@ module Vagrant if @config.ssh.private_key_path info[:private_key_path] = @config.ssh.private_key_path else - info[:private_key_path] = @env.default_private_key_path + info[:private_key_path] = @env.default_private_key_paths end end