From 8f994ef0d2d4f528ca8aa0d904c65aee55ccc907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20M=C3=BCller?= Date: Sun, 9 Feb 2020 00:02:07 +0100 Subject: [PATCH] [util] extend volid to 32 characters --- lib/util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.sh b/lib/util.sh index 73d1bfc..58145f6 100644 --- a/lib/util.sh +++ b/lib/util.sh @@ -246,8 +246,8 @@ get_iso_label(){ local label="$1" label="${label//_}" # relace all _ label="${label//-}" # relace all - - label="${label^^}" # all uppercase - label="${label::8}" # limit to 8 characters + label="${label^^}" # all uppercase + label="${label::32}" # limit to 32 characters echo ${label} }