From: Daan De Meyer Date: Tue, 10 Oct 2023 13:27:41 +0000 (+0200) Subject: Enable codeready-builder by default on RHEL X-Git-Tag: v19~87^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63df9038134d4ad9c7cf95abd8cbe71c93d06368;p=thirdparty%2Fmkosi.git Enable codeready-builder by default on RHEL We enable CRB by default on CentOS as well, so do the same for codeready-builder on RHEL. --- diff --git a/mkosi/distributions/rhel_ubi.py b/mkosi/distributions/rhel_ubi.py index e43df057c..95af16175 100644 --- a/mkosi/distributions/rhel_ubi.py +++ b/mkosi/distributions/rhel_ubi.py @@ -41,13 +41,6 @@ class Installer(centos.Installer): cls.gpgurls(state), enabled=False, ) - if repo == "codeready-builder": - yield Repo( - f"ubi-{v}-{repo}", - f"baseurl={centos.join_mirror(mirror, f'ubi{v}/{v}/$basearch/{repo}/os')}", - cls.gpgurls(state), - enabled=False, - ) @classmethod def repositories(cls, state: MkosiState, release: int) -> Iterable[Repo]: