This workaround was in place for CentOS 8 Stream, for which support
will be dropped in May, so let's drop the workaround already.
@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: