distro/rhel9: make rhel-9 point to rhel-91

Make RHEL 9 without a minor version point to RHEL 9.1, the current GA
version.
This commit is contained in:
Achilleas Koutsou 2023-01-13 17:36:41 +01:00 committed by Tomáš Hozza
parent c049499322
commit b1d6792b26

View file

@ -126,7 +126,7 @@ func (d *distribution) getDefaultImageConfig() *distro.ImageConfig {
func New() distro.Distro {
// default minor: create default minor version (current GA) and rename it
d := newDistro("rhel", 0)
d := newDistro("rhel", 1)
d.name = "rhel-9"
return d
}