Use all insecure private key paths

When constructing the ssh information, use all available insecure key
paths for authentication.
This commit is contained in:
Chris Roberts 2023-06-26 15:46:15 -07:00
parent 380afe5fac
commit e0dbbcc04c

View File

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