Skip to content

Commit

Permalink
Fedora package sets: bump anaconda-webui cutoff to Fedora 41
Browse files Browse the repository at this point in the history
The Change to include anaconda-webui was deferred to Fedora 41
by FESCo. This conditional should match that cutoff.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
  • Loading branch information
AdamWill authored and supakeen committed Mar 1, 2024
1 parent 204ce62 commit 629a002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/distro/fedora/package_sets.go
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ func liveInstallerPackageSet(t *imageType) rpmmd.PackageSet {
},
}

if common.VersionGreaterThanOrEqual(t.arch.distro.osVersion, "39") {
if common.VersionGreaterThanOrEqual(t.arch.distro.osVersion, "41") {
ps = ps.Append(rpmmd.PackageSet{
Include: []string{
"anaconda-webui",
Expand All @@ -560,7 +560,7 @@ func liveInstallerPackageSet(t *imageType) rpmmd.PackageSet {
func imageInstallerPackageSet(t *imageType) rpmmd.PackageSet {
ps := anacondaPackageSet(t)

if common.VersionGreaterThanOrEqual(t.arch.distro.osVersion, "39") {
if common.VersionGreaterThanOrEqual(t.arch.distro.osVersion, "41") {
ps = ps.Append(rpmmd.PackageSet{
Include: []string{
"anaconda-webui",
Expand Down

0 comments on commit 629a002

Please sign in to comment.