From 5ab2e3c2c3efe9b25861ddf560b3760b9384090d Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Mon, 5 Feb 2007 16:15:52 +0100 Subject: [PATCH] path_id: append LUN to iSCSI path --- extras/path_id/path_id | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extras/path_id/path_id b/extras/path_id/path_id index 44754cded..8927d84ff 100644 --- a/extras/path_id/path_id +++ b/extras/path_id/path_id @@ -332,6 +332,7 @@ handle_iscsi() { local iscsi_session_dir local iscsi_session iscsi_session_path local iscsi_connection iscsi_connection_path + local iscsi_scsi_lun # iSCSI device iscsi_session_dir="${DEV%%/target*}" iscsi_session="${iscsi_session_dir##*/}" @@ -378,7 +379,8 @@ handle_iscsi() { if [ -e "${iscsi_connection_path}/persistent_port" ] ; then read iscsi_port < ${iscsi_connection_path}/persistent_port fi - d="ip-${iscsi_address}:${iscsi_port}-iscsi-${iscsi_tgtname}" + iscsi_scsi_lun="${DEV##*:}" + d="ip-${iscsi_address}:${iscsi_port}-iscsi-${iscsi_tgtname}-lun-${iscsi_scsi_lun}" RESULT=0 } -- 2.30.2