distro/rhel8: fix Azure EAP7 RHUI image definition

PR#3421 [1] unintentionally removed the `rhui-azure-rhel8` package from
the Azure EAP7 RHUI image base package set. As a result, the image
manifest can't be built successfully. The reason is that the removed
package installs a RPM GPG key, which is hard-coded in the image manifest
to be imported as part of the image build.

Add the package back to the image base package set and regenerate all
affected test manifests.

[1] https://github.com/osbuild/osbuild-composer/pull/3421

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2023-06-19 15:08:58 +02:00 committed by Tomáš Hozza
parent cf27954a0d
commit 789838682c
6 changed files with 78 additions and 0 deletions

View file

@ -249,6 +249,9 @@ func azureSapPackageSet(t *imageType) rpmmd.PackageSet {
func azureEapPackageSet(t *imageType) rpmmd.PackageSet {
return rpmmd.PackageSet{
Include: []string{
"rhui-azure-rhel8",
},
Exclude: []string{
"firewalld",
},