Merge pull request #13241 from lordgurke/fix-vagrant-13226-wrong-filename

Remove duplicate appending of "6" to network type
This commit is contained in:
Chris Roberts 2023-09-11 17:45:34 -07:00 committed by GitHub
commit f4142705ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -302,8 +302,6 @@ module VagrantPlugins
elsif ip.ipv6?
options[:netmask] ||= 64
# Append a 6 to the end of the type
options[:type] = "#{options[:type]}6".to_sym
else
raise IPAddr::AddressFamilyError, 'unknown address family'
end