1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-30 06:25:25 +03:00

path_id: append LUN to iSCSI path

This commit is contained in:
Kay Sievers 2007-02-05 16:15:52 +01:00
parent bba8160f51
commit 5ab2e3c2c3

View File

@ -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
}