From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 2EBAB81732 for ; Wed, 30 Jul 2025 06:01:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753855312; cv=none; b=sGWLk4eNeRYJvkmjUn6NZ5BTTRlwJNt1pfgpiEI34pxZIg5IbEb/SZBhjCMJ9ORdJRn4NwCsAnzAsOMDIxNGddwWpPQB1gdVtKGOlbtECKnOJ6gjy8uoBaY/sVXlE9gZg6lCgR+aGPFGg0LAMjH61NL+vaj23wZqJWJQupQxyJg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753855312; c=relaxed/simple; bh=iiV3cu/Ufz/6Emtp34B6VfXdArWAZ2mcpHU1g6qk6sc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OGrEWtHmwlllKLh7+tUB/9EsHdjX03L0O1CAc63pnB42S843f9C4G3q/r368rTsC6gGcu3/TwXN34+O9hUjQY1ar3dLOFhLWwfCc6OjMZS0sSvqea3IoTdYhMqYe/cD3vz4JLFuiScYYw7h3aO4ovcdm2X2Ywln7AJWnOyl/+2g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=uwN/zCJF; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="uwN/zCJF" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=VK20lD3RIuPki+CjH17gPfP+AMU9q28sq9137uLdUM8=; b=uwN/zCJFmUYQQyIaIw6hzHzU+h EBi5QHltCdWu19CNVhDGzRnKXZjCdjCNqFyCLCRWs/qcnnUKzgBUVs5QrXWugocvH+Ngm+sIOMIxp SJh6tK2M7x4U8+ec8amKwj1v5InMqpQMS3qbh2yw8dB9MJlk0VpFU5GC+8qVf9884Ng7ScE+AdJlQ Y7BYBxe3WmW2juka+SJ6X7XNW2qzbkdCtdu7vWo/1xdBThuXKXrLyomteBSDZq5iV0SXMMN9GTXX+ BBdlXp2nGYmN7qND3v9M7WWXYeqqfglhml+tPWf4n1+4GyNOB+80DA9pwNnJuMcCEnLSNgrMGhzhs 6HAFhHmw==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1ugzss-00000000lOI-3WF5; Wed, 30 Jul 2025 06:01:50 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH v2 1/9] roles/guestfs: add missing bootlinux_9p: False Date: Tue, 29 Jul 2025 23:01:37 -0700 Message-ID: <20250730060147.182140-2-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250730060147.182140-1-mcgrof@kernel.org> References: <20250730060147.182140-1-mcgrof@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 Sender: Luis Chamberlain Commit 722d83a4871c41 ("bootlinux: Move 9p build tasks to a subrole") added a proactive directory creation as we no longer git clone right away, but forgot to ensure the variable is defined by default. When we don't enable building linux this variable is not defined. Fix this. Fixes: 722d83a4871c41 ("bootlinux: Move 9p build tasks to a subrole") Signed-off-by: Luis Chamberlain --- playbooks/roles/guestfs/defaults/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/guestfs/defaults/main.yml b/playbooks/roles/guestfs/defaults/main.yml index eec137bd..76854d06 100644 --- a/playbooks/roles/guestfs/defaults/main.yml +++ b/playbooks/roles/guestfs/defaults/main.yml @@ -3,3 +3,4 @@ distro_debian_based: false libvirt_uri_system: false libvirt_enable_largeio: false +bootlinux_9p: False -- 2.47.2