image-installer: switch payload to minimal-rpm

With the addition of the minimal rpm package set and image type in #3181
the previously added bare metal package set is a duplicate. It's not
used elsewhere within fedora and the minimal rpm package set is
officially defined.
This commit is contained in:
Simon de Vlieger 2023-01-27 12:59:06 +01:00 committed by Ondřej Budai
parent 5f0d273248
commit a28d535577
2 changed files with 1 additions and 9 deletions

View file

@ -79,7 +79,7 @@ var (
filename: "installer.iso",
mimeType: "application/x-iso9660-image",
packageSets: map[string]packageSetFunc{
osPkgsKey: bareMetalPackageSet,
osPkgsKey: minimalrpmPackageSet,
installerPkgsKey: imageInstallerPackageSet,
},
bootable: true,

View file

@ -543,14 +543,6 @@ func containerPackageSet(t *imageType) rpmmd.PackageSet {
return ps
}
func bareMetalPackageSet(t *imageType) rpmmd.PackageSet {
return rpmmd.PackageSet{
Include: []string{
"@core",
},
}
}
func minimalrpmPackageSet(t *imageType) rpmmd.PackageSet {
return rpmmd.PackageSet{
Include: []string{