From 06318fa1e66b5c280aa423d5257243ce4e985dd2 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sun, 21 Apr 2024 20:40:40 +0200 Subject: [PATCH] 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. --- mkosi/distributions/centos.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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: -- 2.47.2