distro/rhel90: drop rhel86 alias

It doesn't ever make sense to alias 90 as 86.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2021-08-06 08:14:02 +02:00 committed by Ondřej Budai
parent 6693ebc59b
commit 7b03db05c3

View file

@ -14,7 +14,6 @@ import (
)
const defaultName = "rhel-90"
const rhel86Name = "rhel-86"
const osVersion = "9.0"
const releaseVersion = "9"
const modulePlatformID = "platform:el9"
@ -460,10 +459,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)
}