Skip to content

Commit

Permalink
fedora-iot: move bootupd to f41
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Whalen <[email protected]>
  • Loading branch information
Paul Whalen committed Sep 10, 2024
1 parent dc9903b commit 8086ed4
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pkg/distro/fedora/package_sets.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,14 @@ func iotCommitPackageSet(t *imageType) rpmmd.PackageSet {
"podman-plugins", // deprecated in podman 5
},
})
} else {
ps = ps.Append(rpmmd.PackageSet{
Include: []string{
"bootupd", // added in F40+
},
})
}
if common.VersionLessThan(t.arch.distro.osVersion, "41") {
ps = ps.Append(rpmmd.PackageSet{
Include: []string{
"bootupd", // Added in F41+
},
})
}

return ps
}
Expand Down

0 comments on commit 8086ed4

Please sign in to comment.