From 4e617830085c2085825d331a2ca62aad84c1ec2a Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 10 Jan 2024 11:32:49 -0800 Subject: [PATCH] Fix autoload for `Util::Keypair` --- lib/vagrant/util.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/util.rb b/lib/vagrant/util.rb index 1f799af3b..5be05813e 100644 --- a/lib/vagrant/util.rb +++ b/lib/vagrant/util.rb @@ -36,7 +36,7 @@ module Vagrant autoload :IO, 'vagrant/util/io' autoload :IPV4Interfaces, 'vagrant/util/ipv4_interfaces' autoload :IsPortOpen, 'vagrant/util/is_port_open' - autoload :KeyPair, 'vagrant/util/key_pair' + autoload :Keypair, 'vagrant/util/keypair' autoload :LineBuffer, 'vagrant/util/line_buffer' autoload :LineEndingHelpers, 'vagrant/util/line_ending_helpers' autoload :LoggingFormatter, 'vagrant/util/logging_formatter'