missed set truncation to 45

This commit is contained in:
juronja 2026-02-17 10:34:06 +00:00
parent bfa2a45a54
commit feabc81cfb

View File

@ -560,7 +560,7 @@ if [ "$IMPORT_DISKS" == "yes" ]; then
SCSI_NR=0
while read -r LSOUTPUT; do
TRUNCATED="${LSOUTPUT:0:50}"
TRUNCATED="${LSOUTPUT:0:45}"
if [ ${#LSOUTPUT} -gt 45 ]; then
TRUNCATED="${TRUNCATED}..."
fi