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 C7C391F03C5 for ; Fri, 1 Aug 2025 19:46:37 +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=1754077600; cv=none; b=FAGiU+Xv87EJ7LEw2SaqL/K85MRBS2onLIWkv+kqQFCsWDrw/D6bdY/vIwy99ukspBAIiHJka4Makfh+GaLYiecRQ2ZfTRjIWN5S4z6Qkz/C3J5gNhJTeJF3AVfEza6TMrpgjv6V9ERFbmK+YMJY2jcnzEF+F4jy6i0naBTshpY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754077600; c=relaxed/simple; bh=tSBIzA4O7Ef0uNad0NSdPGpZK4qFvHdJjGxgydp3QOs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=scezavqiw6cdJbttb/SN5d4cV3BadWm7nhqUs11OzW4xZ3R465nVp1c1n/429bRRWD0gdGE95jQd+VrfH3ewYyjGYcakR52eywLjt+CXCuHkA5OVDLGzQrkaDDV4JBcX4moQp7C/gy+d8hDYylH2u3RiK9/g+pfiKSNRZ5ho9CQ= 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=12COOP3s; 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="12COOP3s" 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=4NZatXlwwIxrDDgt4a9sD4N1RDBFGRrW3er1CoCtImQ=; b=12COOP3sUJWT9iG7J6mL9w6u5U D+Bf+fM4znzLwDYTbUoJrRXg9s5yIaZCS20V1ubCqSbl16Xg610j1EaFCEwqJPpqDCiAN3/vBeFh7 u2UzyKROFYpB8UY+iSBbD1jQ7nR9t5VRF4JG7+iJA9eChdtGMwH7uVzyqIKgmy3XJKu4PdvPq9Kzx j0ApdLKCRxuxSz62F8FtHHwOWyHUmw45XsNunO4LBtd5sd4kLmUS1epNoxdSMcl9+UsmmLVrmku72 fcagL5OArf6722iz6HKSKVD77ugrgqz2+LGU+20v2ZRLryq6vHAXYei2NU1cKYoNaC99pO/yihOHe TV2j1H0Q==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1uhvi9-00000006hrR-0983; Fri, 01 Aug 2025 19:46:37 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain , Chuck Lever Subject: [PATCH v3 01/11] roles/guestfs: add missing bootlinux_9p: False Date: Fri, 1 Aug 2025 12:46:25 -0700 Message-ID: <20250801194635.1598544-2-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250801194635.1598544-1-mcgrof@kernel.org> References: <20250801194635.1598544-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") Reviewed-by: Chuck Lever 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 eec137bd730a..76854d06582f 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