From patchwork Sat Dec 14 17:01:38 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 13908528 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5888928F1 for ; Sat, 14 Dec 2024 17:01:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734195703; cv=none; b=Tf/40FGV3vETeAqhcvLrrjzmIEm0nJJy2ck1DZee/QQvWgSFc9ULrcFmdAfZ3dRv2L1XLUdrK1lcmBrIrkRV/g+GyGbrSqXD9mHCdPo83xu7tWUNvsgWEALo51ak2P7tG9t4J5D7upUj8eCywoCw/6hrl7r4eY/XN4Sjl1qwKMk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734195703; c=relaxed/simple; bh=+/VV18qLaFWH1luHPSJhGN+7uqRboByi+5VjXLebiug=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KA0nkZS0x8Nsv1ie9Nd6/OrJ2EN614gYk1UoO6RhzIeDCzEDONkwwPVa4JAPSFyX/zBeGYFZIbVCqoWCIyWQCCMALcxH0lHpCZFrpwG76asjHefWwjdgJ4WhUsT3dFxase+vIszFDJvkckhqjq4buygfTP3kcNhPXhIYhy+DS8Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=AsUxDq7p; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="AsUxDq7p" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 86BD7C4CEDD; Sat, 14 Dec 2024 17:01:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1734195702; bh=+/VV18qLaFWH1luHPSJhGN+7uqRboByi+5VjXLebiug=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=AsUxDq7pDxy88Bdjza937lSDfcZMa4/LRicIJu2L/qD55yZBNggUfD0yO9GARMxBi MASs71IKHpoX0s7iO2CGI8Ra/rJck+25TnDkaLCdJnpUjIw79mLGbpFm73E7ArFgRE GkEf2xTbVWt9VpsrMI5CoXb+q/8lxxDyHFJboSBhF1NI+TbojQrUxTFkQpSe0LSeQp WzkRQNJ0PbS6xtPYOiRjZTeaHnqtQpH6xp6yVT0biJ4ApHAzdl7zj5XKnKOKsVKIiz jyw75OUqmEBr5XDzlCk3l6CB0DmVB8s9nEtCNaznCMD31rQdbWjlQtqlkP9r2e9GUx 6FezhCDXDRTEw== From: cel@kernel.org To: Cc: Anna Schumaker , Chuck Lever Subject: [PATCH v2 2/3] codereadyrepo: Repo name for Oracle Linux Date: Sat, 14 Dec 2024 12:01:38 -0500 Message-ID: <20241214170139.253602-3-cel@kernel.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241214170139.253602-1-cel@kernel.org> References: <20241214170139.253602-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever The name of the CodeReady Builder repo on Oracle Linux is different than the other cases that the codereadyrepo role already supports. Signed-off-by: Chuck Lever --- playbooks/roles/codereadyrepo/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/playbooks/roles/codereadyrepo/tasks/main.yml b/playbooks/roles/codereadyrepo/tasks/main.yml index 7cf6d83bcccf..b1d62eeb384c 100644 --- a/playbooks/roles/codereadyrepo/tasks/main.yml +++ b/playbooks/roles/codereadyrepo/tasks/main.yml @@ -6,6 +6,13 @@ - ansible_distribution == 'RedHat' - not devconfig_custom_yum_repofile +- name: Select the Oracle Linux CodeReady Builder repo + ansible.builtin.set_fact: + codeready_repo: "ol9_codeready_builder" + when: + - ansible_distribution == 'OracleLinux' + - not devconfig_custom_yum_repofile + - name: Select the CentOS CodeReady Builder repo ansible.builtin.set_fact: codeready_repo: "crb"