distro/rhel86: remove redundant rhel-86 alias

Accidentally left over from copy from RHEL 8.5
This commit is contained in:
Achilleas Koutsou 2021-10-11 13:02:49 +02:00 committed by Tom Gundersen
parent c1944095d0
commit 20036e7944

View file

@ -17,7 +17,6 @@ import (
)
const defaultName = "rhel-86"
const rhel86Name = "rhel-86"
const osVersion = "8.6"
const releaseVersion = "8"
const modulePlatformID = "platform:el8"
@ -462,10 +461,6 @@ func New() distro.Distro {
return newDistro(defaultName, modulePlatformID, ostreeRef)
}
func NewRHEL86() distro.Distro {
return newDistro(rhel86Name, modulePlatformID, ostreeRef)
}
func NewHostDistro(name, modulePlatformID, ostreeRef string) distro.Distro {
return newDistro(name, modulePlatformID, ostreeRef)
}