From 417c381b442842bf34b7f1a7642010ec196d61ec Mon Sep 17 00:00:00 2001 From: Jakub Rusz Date: Tue, 22 Mar 2022 11:11:56 +0100 Subject: [PATCH] Schutzfile: fix centos-stream-9 repo pin During runner repo override the runner name is compared with the key in Schutzfile. There was the word 'stream' missing for centos runners so the repos were never acutally overwritten before. See https://github.com/osbuild/gitlab-ci-terraform-executor/blob/main/prepare#L69 for more context --- Schutzfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Schutzfile b/Schutzfile index 933adcfb5..d3597e32d 100644 --- a/Schutzfile +++ b/Schutzfile @@ -127,7 +127,9 @@ "osbuild": { "commit": "d8f36b55fa043002c6650a75fbeba5165cc0824b" } - }, + } + }, + "centos-stream-9": { "repos": { "file": "/etc/yum.repos.d/centos.repo", "x86_64": [ @@ -166,4 +168,4 @@ ] } } -} \ No newline at end of file +}