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 3127928467B for ; Mon, 22 Sep 2025 09:36:57 +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=g2Rw+dsTgXZPKQdCH4vSm9UwLyRc5T6kPtMwAUmcx7aFf5LHxPCxiNrDz9mOD0YWWP4crlKTk+YGhnT9W9M+6zBq5wZzZxk568BUZgskLZpCOMqSAb+YGD6tH8bnMiwkr1JThv4g1sHDYy3Q7YiJX7/WBMyIE26g/bPBDBWj10Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758533819; c=relaxed/simple; bh=jjeVC8wEvgDhBlGiIFcypBCRqpIcgWZIYHMP9s5l9JU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QRFXsjjv6NvnIwtqBRkjME0xqjmJIxesByIo7Hwmm2rkeFtPrw3D+geMUMPqzQmn71ABxu5zqGNfUq6ZXGGAyPsYaFUjnbxwlS9c7rQrirerpYTDy9XqTDeYjQSBRfg0rsTvqSwbcxDZ6JJCKwgjX4RNn5te1lF/lLrWeyu5Bkg= 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=IeGnu3Q1; 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="IeGnu3Q1" 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=Q+NU1lN+1rzPM7MlJ6M8PzYMbK3GEz8egdAk/SSFgMo=; b=IeGnu3Q15elnuGr7cWkdCm72Pv A4nniEQN4qxB20521SRNISfRyABQkxW0o6b4Y4J/YgcRPzZZY2FA6z/HgArKSN3wXicbdnBHbexuJ Knp++Yg+mFNrLrMsTG3j8kz7V70lpfirHDSNTLqlUqa/HLIDM2Pu35s+SH+gdkmiCv6x32ZqsjxED lQLlS8PvEEpd7EWS/454Ro+Pe/tN/bR3SatopG9FAFjknAanSGdDfPSv+cmF0fIhQZ5gldiBzAohD xdmY5K1iS+2AL5dC8afGNtHJ4AcgDiqK7jdinFgt3Ja2SW5JN5pYqh9Ko6eaWw6K8m0Ava4CWJf5N itUN3cwQ==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1v0cyf-00000009uDr-30JC; 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 03/13] iscsi: add missing initiator packages for Debian Date: Mon, 22 Sep 2025 02:36:45 -0700 Message-ID: <20250922093656.2361016-4-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 The Debian vars file was missing iscsi_initiator_packages definition, causing failures when setting up iSCSI initiators for pNFS block layout testing. Add open-iscsi package to match the pattern used in SUSE. Generated-by: Claude AI Signed-off-by: Luis Chamberlain --- playbooks/roles/iscsi/vars/Debian.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playbooks/roles/iscsi/vars/Debian.yml b/playbooks/roles/iscsi/vars/Debian.yml index 3495468e..606576c4 100644 --- a/playbooks/roles/iscsi/vars/Debian.yml +++ b/playbooks/roles/iscsi/vars/Debian.yml @@ -3,4 +3,7 @@ iscsi_target_packages: - targetcli-fb - sg3-utils +iscsi_initiator_packages: + - open-iscsi + iscsi_target_service_name: targetclid.socket -- 2.51.0