From b1d6792b262e29aa820f1e4e025b478a2772cece Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Fri, 13 Jan 2023 17:36:41 +0100 Subject: [PATCH] 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. --- internal/distro/rhel9/distro.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/distro/rhel9/distro.go b/internal/distro/rhel9/distro.go index 2a4674c7e..cdd54d113 100644 --- a/internal/distro/rhel9/distro.go +++ b/internal/distro/rhel9/distro.go @@ -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 }