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:
parent
5f0d273248
commit
a28d535577
2 changed files with 1 additions and 9 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue