rhel85: append "boot" package sets to "packages"
If an image type is marked "bootable", append the package set with name "boot".
This commit is contained in:
parent
e8dd5b3248
commit
5f53b3865f
1 changed files with 5 additions and 0 deletions
|
|
@ -197,6 +197,11 @@ func (t *imageType) PackageSets(bp blueprint.Blueprint) map[string]rpmmd.Package
|
|||
mergedSets["build"] = buildSet
|
||||
}
|
||||
|
||||
// package sets from flags
|
||||
if t.bootable {
|
||||
mergedSets["packages"] = mergedSets["packages"].Append(archSets["boot"]).Append(distroSets["boot"])
|
||||
}
|
||||
|
||||
// blueprint packages
|
||||
bpPackages := bp.GetPackages()
|
||||
timezone, _ := bp.Customizations.GetTimezoneSettings()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue