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 5599E286889 for ; Mon, 22 Sep 2025 09:36:58 +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=1758533819; cv=none; b=OydZ6tKiO7TBTd+tCw3zj1HsPnjixizMcTQ9YvdbVU0V7QVn36F7Ka18zLCL9cQTPIi/O0twhp2wCPqo7RGOE7kZ/p6mUKDyEt77bFXs28miAQLnQZYCTgnBbIttD/SCeggsRloPAAhWLiaZ1CvUuORrjMQJTxmj0SFyjdkPJYY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758533819; c=relaxed/simple; bh=3HVSV93dWbEiGTJl1FsU+83B12DQVEefmQ5orZ3QO2w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Lt7zOIkFNmPva6UA5Tf36vxRAhzBSe5RXULUakiV+T7fyrsgmXCAOvCyhZcUWQtmfT5d4e3GLGrxhg3SKQj4LE19Guqg+z6b/iGJ+gVHIp0bk6YeCTH6E36UEU1Py9e99eo61sdgRY3AA666saWPXBxkLMfC3Sjtf67bXGjKRpM= 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=jCx1wVws; 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="jCx1wVws" 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=1b6bDdxhdu3QlNXZoR5Lup8C67Yru7zvdpgUg2FUqnY=; b=jCx1wVwseWWpf9AF5GCC1zfSVM MTznb6x6iaZEwBUGURfnBz9PoLlemm1c+iaFSRV7glwtjp9AeMyEZlgSVVtD+T9a5VcYhzw2LGhfu y9mFBQkdyhsWQT6W0ETWitqpOa+gU7nJSfAhDHyQ6JB9URA1QX8P5TRT436uLm3zwAVyi1xyu9abV +6bj3RoBzyh5QLigPDpSqdD65TwUce0rEABv4cQ9IWskeqjEG3nrowaOPk/w/7wKHfK8gf7CjYDDS MXw6xcVhjQXRV3zsacwqRqOowVOHA2RP8Dns3wJ9vimEvTdLznonsK2Z9DtQC/wibu74cmGzypLe7 S7rakcXw==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1v0cyf-00000009uEB-3j2E; Mon, 22 Sep 2025 09:36:57 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 07/13] fstests: move conditional to play level for iSCSI setup Date: Mon, 22 Sep 2025 02:36:49 -0700 Message-ID: <20250922093656.2361016-8-mcgrof@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250922093656.2361016-1-mcgrof@kernel.org> References: <20250922093656.2361016-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 Move the pNFS conditional from role level to play level in the fstests playbook. The when condition needs to be at the play level to properly evaluate the variable. Generated-by: Claude AI Signed-off-by: Luis Chamberlain --- playbooks/fstests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/fstests.yml b/playbooks/fstests.yml index 4cb74783..79e27c45 100644 --- a/playbooks/fstests.yml +++ b/playbooks/fstests.yml @@ -8,7 +8,7 @@ hosts: nfsd roles: - role: iscsi - when: fstests_nfs_section_pnfs|default(false)|bool + when: fstests_nfs_section_pnfs|default(false)|bool - name: Configure and run the filesystem testing suite workflow hosts: baseline:dev -- 2.51.0