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 CD30023C4FF for ; Thu, 4 Sep 2025 15:15:39 +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=1756998940; cv=none; b=kfzDmffDPhj0WjHgXeXN89ip0G7zysXiVywSCy2Qu5lRUtidTKWvNqLwm4RaGOQnHixizFLAvk8LC1j2H5SWSNsFCHlLOhlBRbRu070TH82GEwgYwKeHV4cUMOb3CUsfLn+BmWw19CAFS/JMdNbGkIEgwjdPBr7gGsAE9z2ooU0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998940; c=relaxed/simple; bh=8q8ihrl+4p1VJJrImSoCaVfZ7uCr6l46V8P1MYD7Ltg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=p3xArUA+YK/lIr5PErcBeznGWockHigCb/hoqWyVRmkXXxieuTJCP9PCRxo302TjxNMBep5H56GOJ9+iitZZBRaauOOdQnKTHy8weGSzWq+SE/V8ZGIkc/grvDIiT350hPUkBwNBkIBta6TdEaOmXx2wyISDwpWGUQQrGEdTueI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=s/CKVtg6; 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="s/CKVtg6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10C13C4CEF6; Thu, 4 Sep 2025 15:15:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998939; bh=8q8ihrl+4p1VJJrImSoCaVfZ7uCr6l46V8P1MYD7Ltg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=s/CKVtg6OBk1HJ3G0afzlVBG9Kr/AiIyg4GMqXMoAoFKy+lr3BYAAWxfN6MucsnE2 ZDiSwtqcIapcFc7o1SdppKLYc8TVC68P0vMMQZ/BH3yQz19tpmXeC7jpdPB9BQrft7 /bH1wBlQpb4S640BuB9LbW1z2IVOyctglypRG4Y36+cWxdpGQ3bh1OPUBf8tdzeWUZ 3XDEfml5MHTtYeI1vIIYbJWnotavaMgh+nvQPhp3CBILmFWAkcnyM1BffTL8GehqIG PaiS7GE30+dtYOD698XMe74PAgrfvIXYotk0s55p2YzEqogz0RdLHPKftMJXdvZd74 hhoKNGYWkjhrA== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain , Daniel Gomez Subject: [PATCH v3 21/36] gen_hosts: Add 'localhost' to the [all] group Date: Thu, 4 Sep 2025 11:15:09 -0400 Message-ID: <20250904151526.1596282-22-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250904151526.1596282-1-cel@kernel.org> References: <20250904151526.1596282-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. Reviewed-by: Luis Chamberlain Reviewed-by: Daniel Gomez 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