From mboxrd@z Thu Jan 1 00:00:00 1970 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 24AE62116E7 for ; Wed, 27 Aug 2025 14:28: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=1756304924; cv=none; b=hFaatPqhn4RDHhP1/Db73DrKk0EPvvO78lwMcjhKpbV+zNOo/dIQgiYjRoblQ/+D2CjIiQM9kAUwwauv3byzOB+2wS65dImS4Bip1O9JN0+rRRi8BIY5W+HiEiodYzwIogHRggBBcRier8NdIk5IlJeHpaTd+ZdmbwaCU112Ez0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304924; c=relaxed/simple; bh=p4uU6HE1vh+7sv9LhorBaEpwOrcGkhznH1kQDOopV7k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=mfvBsfWgLf2YQWzz827mo0I0aOxa5bEJidj8xVFdaZf6RwlAL5MkNCeKs7QiTaWE6n8Sra/PaegNi5VKOgKyKFkfKru55GOVZMTdg9R9FeZbPScU4B3uUpxLo0MGWdBJvFHFDvE7m/R/N/zPEporg7kDigoJOsOV2KSfQxr1ZEE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MIgXBurm; 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="MIgXBurm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 777B6C4CEF5; Wed, 27 Aug 2025 14:28:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756304923; bh=p4uU6HE1vh+7sv9LhorBaEpwOrcGkhznH1kQDOopV7k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MIgXBurm4T6W5dS0/O9KSsAuG0PVyLSko3AeYT5dsOZsM3R64N8HKxDqIbTuKnAQm 0cTQOZn3N/2+Gt1CArNfhwDUj0n/KtQdpcXh5N1SZij0yUnTpF8JTZ8obqMJoUpg5L o1kAsea4zwROwA2UFu4z6+roL12qTHMER/BSp4sSdSehCPzfh4f/+vgPOtnb7YOrOp dkP+iBQDLPMDK1i8+EzxzL4d3II+koKYMOz6ua12AJ+Ao4+JX4WusNqmU30z3h5cjM g8hImdko9y1WDhGLHW6daaoaszLFAmECqXRsj37bdiy+6d7q4kB6hTy36v2oTvvhsP LYnIaXEhsaa6g== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 21/26] gen_hosts: Add 'localhost' to the [all] group Date: Wed, 27 Aug 2025 10:28:16 -0400 Message-ID: <20250827142832.2629291-22-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250827142832.2629291-1-cel@kernel.org> References: <20250827142832.2629291-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever Commit 58a0745e8fa2 ("Add a guest/instance for building the test kernel") was applied just after commit 1cf0800c9ffc ("gen_hosts: templates: include localhost in the all group"). The former should have been updated to include localhost in its [all] group. Without 'localhost', trying to provision the kernel builder node fails. Signed-off-by: Chuck Lever --- playbooks/roles/gen_hosts/templates/builder.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/gen_hosts/templates/builder.j2 b/playbooks/roles/gen_hosts/templates/builder.j2 index 0c9ba1e8e01a..eb8c736409b9 100644 --- a/playbooks/roles/gen_hosts/templates/builder.j2 +++ b/playbooks/roles/gen_hosts/templates/builder.j2 @@ -1,4 +1,5 @@ [all] +localhost ansible_connection=local {{ kdevops_hosts_prefix }}-builder [all:vars] ansible_python_interpreter = "{{ kdevops_python_interpreter }}" -- 2.51.0