From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 59C7E3858C2C for ; Wed, 15 Jun 2022 13:49:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 59C7E3858C2C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from tarox.wildebeest.org (83-87-18-245.cable.dynamic.v4.ziggo.nl [83.87.18.245]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 370A5302BBEB; Wed, 15 Jun 2022 15:49:45 +0200 (CEST) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 4347F4043AE4; Wed, 15 Jun 2022 15:49:45 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] Containerfile-opensuse-leap: Fix image_name Date: Wed, 15 Jun 2022 15:49:35 +0200 Message-Id: <20220615134935.5831-1-mark@klomp.org> X-Mailer: git-send-email 2.18.4 X-Spam-Status: No, score=-11.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: buildbot@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "The https://builder.sourceware.org/ buildbot" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2022 13:49:51 -0000 The image_name was set to opensuse-tumbleweed which was slightly confusing in the logs (but didn't really break anything). --- builder/containers/Containerfile-opensuse-leap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/containers/Containerfile-opensuse-leap b/builder/containers/Containerfile-opensuse-leap index 77f94d5..336548d 100644 --- a/builder/containers/Containerfile-opensuse-leap +++ b/builder/containers/Containerfile-opensuse-leap @@ -25,7 +25,7 @@ RUN useradd -u 1001 -U -d /home/builder -m builder # Create buildbot-worker script which sets up shared worker and ccache # data with the host. Each run gets a new password, so update that too. RUN cd /home/builder; \ - echo $'image_name=opensuse-tumbleweed\n\ + echo $'image_name=opensuse-leap\n\ worker_dir=shared/$image_name/worker\n\ tac_file=$worker_dir/buildbot.tac\n\ if [ ! -f $tac_file ]; then\n\ -- 2.18.4