Skip to content

Commit

Permalink
fedora: exclude perl only on x86_64 and aarch64
Browse files Browse the repository at this point in the history
powerpc-utils and s390utils-base require /usr/bin/perl
  • Loading branch information
achilleas-k authored and ondrejbudai committed Jan 26, 2024
1 parent ba52ac6 commit ebb173d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkg/distro/fedora/package_sets.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ func bootableContainerPackageSet(t *imageType) rpmmd.PackageSet {
"initscripts", // make sure initscripts doesn't get pulled back in https://github.com/coreos/fedora-coreos-tracker/issues/220#issuecomment-611566254
"NetworkManager-initscripts-ifcfg-rh", // do not use legacy ifcfg config format in NetworkManager See https://github.com/coreos/fedora-coreos-config/pull/1991
"nodejs",
"perl",
"perl-interpreter",
"plymouth", // for (datacenter/cloud oriented) servers, we want to see the details by default. https://lists.fedoraproject.org/archives/list/[email protected]/thread/HSMISZ3ETWQ4ETVLWZQJ55ARZT27AAV3/
"systemd-networkd", // we use NetworkManager
},
Expand All @@ -265,6 +263,10 @@ func bootableContainerPackageSet(t *imageType) rpmmd.PackageSet {
"irqbalance",
"ostree-grub2",
},
Exclude: []string{
"perl",
"perl-interpreter",
},
})
case arch.ARCH_PPC64LE.String():
ps.Append(rpmmd.PackageSet{
Expand All @@ -280,6 +282,10 @@ func bootableContainerPackageSet(t *imageType) rpmmd.PackageSet {
Include: []string{
"irqbalance",
},
Exclude: []string{
"perl",
"perl-interpreter",
},
})
}

Expand Down

0 comments on commit ebb173d

Please sign in to comment.