]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
centos: Drop glibc-minimal-langpack workaround 2647/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 21 Apr 2024 18:40:40 +0000 (20:40 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 21 Apr 2024 18:40:40 +0000 (20:40 +0200)
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

index 1154225400193c101cfd95aee5ece36328c3ac4f..b4d898708838a1e7e4cfa6002abc65c4cd0f9152 100644 (file)
@@ -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: