From: Daan De Meyer Date: Sun, 21 Apr 2024 18:40:40 +0000 (+0200) Subject: centos: Drop glibc-minimal-langpack workaround X-Git-Tag: v23.1~102^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2647%2Fhead;p=thirdparty%2Fmkosi.git centos: Drop glibc-minimal-langpack workaround This workaround was in place for CentOS 8 Stream, for which support will be dropped in May, so let's drop the workaround already. --- diff --git a/mkosi/distributions/centos.py b/mkosi/distributions/centos.py index 115422540..b4d898708 100644 --- a/mkosi/distributions/centos.py +++ b/mkosi/distributions/centos.py @@ -79,8 +79,7 @@ class Installer(DistributionInstaller): @classmethod def install(cls, context: Context) -> None: - # Make sure glibc-minimal-langpack is installed instead of glibc-all-langpacks. - cls.install_packages(context, ["basesystem", "glibc-minimal-langpack"], apivfs=False) + cls.install_packages(context, ["basesystem"], apivfs=False) @classmethod def install_packages(cls, context: Context, packages: Sequence[str], apivfs: bool = True) -> None: