From f0eca9a329dce070c907364959445dcbbd75d87b Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Wed, 2 Aug 2023 15:04:19 +0200 Subject: [PATCH] centos: Fix extras source repo id --- mkosi/distributions/centos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkosi/distributions/centos.py b/mkosi/distributions/centos.py index 4f90cfb38..1b4f33c92 100644 --- a/mkosi/distributions/centos.py +++ b/mkosi/distributions/centos.py @@ -121,7 +121,7 @@ class CentosInstaller(DistributionInstaller): if repo == "extras": return [ Repo(repo.lower(), f"{url}?arch=$basearch&repo=centos-extras-sig-extras-common-$stream", cls.gpgurls()), - Repo(repo.lower(), f"{url}?arch=source&repo=centos-extras-sig-extras-common-source-$stream", cls.gpgurls(), enabled=False), + Repo(f"{repo.lower()}-source", f"{url}?arch=source&repo=centos-extras-sig-extras-common-source-$stream", cls.gpgurls(), enabled=False), ] return [ -- 2.47.2