[util] extend volid to 32 characters

This commit is contained in:
Philip Müller 2020-02-09 00:02:07 +01:00
parent 05722a2fa2
commit 8f994ef0d2

View file

@ -247,7 +247,7 @@ get_iso_label(){
label="${label//_}" # relace all _
label="${label//-}" # relace all -
label="${label^^}" # all uppercase
label="${label::8}" # limit to 8 characters
label="${label::32}" # limit to 32 characters
echo ${label}
}