From a2edeca1cc681664b86485e3f9300f5afcbff71a Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 11 Jun 2024 09:12:04 -0500 Subject: [PATCH] Revert "manifest: Add awscli2 to RHEL 9 AMI (CLOUDX-913)" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit c46dc3b59953fabc945ec5c0891aee933b00bc8e. We need a bit more discussion before we consider adding this to all AMI images. 🤔 Signed-off-by: Major Hayden --- pkg/distro/rhel/rhel9/ami.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/distro/rhel/rhel9/ami.go b/pkg/distro/rhel/rhel9/ami.go index 5776f06b5e..34af5986e9 100644 --- a/pkg/distro/rhel/rhel9/ami.go +++ b/pkg/distro/rhel/rhel9/ami.go @@ -240,11 +240,6 @@ func ec2CommonPackageSet(t *rhel.ImageType) rpmmd.PackageSet { }, }.Append(distroSpecificPackageSet(t)) - // Include awscli2 on RHEL 9.5+ (CLOUDX-913) - if common.VersionGreaterThanOrEqual(t.Arch().Distro().OsVersion(), "9.5") { - ps.Include = append(ps.Include, "awscli2") - } - return ps }