From f61c42e6669abc9cbcf7c5e7c52a627e6717939b Mon Sep 17 00:00:00 2001 From: Zhiqiang Liu Date: Sat, 29 Jan 2022 12:12:29 +0800 Subject: [PATCH] sg3_utils: rescan scsi bus list all LUNs in one line fix issue: https://gitee.com/src-openeuler/sg3_utils/issues/I4RU82 rescan scsi bus list all LUNs in one line before: Scanning SCSI subsystem for new devices Scanning host 0 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs Scanning for device 0 2 4 0 ... after: Scanning SCSI subsystem for new devices Scanning host 0 for SCSI target IDs 0 1 2 3 4 5 6 7, all LUNs Scanning for device 0 2 4 0 ... Signed-off-by: wubo Signed-off-by: yanglongkang Signed-off-by: Zhiqiang Liu --- scripts/rescan-scsi-bus.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rescan-scsi-bus.sh b/scripts/rescan-scsi-bus.sh index 46fe6c0..56cb9ed 100755 --- a/scripts/rescan-scsi-bus.sh +++ b/scripts/rescan-scsi-bus.sh @@ -1337,12 +1337,12 @@ else [ -n "$channelsearch" ] && echo -n "channels $channelsearch " echo -n "for " if [ -n "$idsearch" ] ; then - echo -n " SCSI target IDs $idsearch" + echo -n " SCSI target IDs" $idsearch else echo -n " all SCSI target IDs" fi if [ -n "$lunsearch" ] ; then - echo ", LUNs $lunsearch" + echo ", LUNs" $lunsearch else echo ", all LUNs" fi -- 1.8.3.1