From 049650a674834700a7db103979be104964a1945d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Fri, 1 Dec 2023 17:00:08 +0100 Subject: [PATCH] distro/el9: don't explicitly list `rhc` in Azure pkg set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `rhc` is part of the `@standard` package group, which is required by the `@Server` package group included in the Azure pkg set. There's no need to list it explicitly. This change has no effect on the Azure images content. Signed-off-by: Tomáš Hozza --- pkg/distro/rhel9/azure.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkg/distro/rhel9/azure.go b/pkg/distro/rhel9/azure.go index 1363f98721..957f61072d 100644 --- a/pkg/distro/rhel9/azure.go +++ b/pkg/distro/rhel9/azure.go @@ -149,14 +149,6 @@ func azureCommonPackageSet(t *imageType) rpmmd.PackageSet { }, }.Append(distroSpecificPackageSet(t)) - if t.arch.distro.isRHEL() { - ps.Append(rpmmd.PackageSet{ - Include: []string{ - "rhc", - }, - }) - } - return ps }