From feabc81cfb5256325e492c6e025ec325f1e271d4 Mon Sep 17 00:00:00 2001 From: juronja <101410098+juronja@users.noreply.github.com> Date: Tue, 17 Feb 2026 10:34:06 +0000 Subject: [PATCH] missed set truncation to 45 --- vm/truenas-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/truenas-vm.sh b/vm/truenas-vm.sh index 57d2054fa..d61ee7533 100644 --- a/vm/truenas-vm.sh +++ b/vm/truenas-vm.sh @@ -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