diff options
-rwxr-xr-x | functions/defaults.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 5f57c9228..f1e1e3a6e 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -676,10 +676,15 @@ Set_defaults () if [ -z "${LH_ISO_VOLUME}" ] then case "${LH_MODE}" in - debian|debian-release) + debian) LH_ISO_VOLUME="Debian Live \$(date +%Y%m%d-%H:%M)" ;; + debian-release) + eval VERSION="$`echo RELEASE_${LH_DISTRIBUTION}`" + LH_ISO_VOLUME="Debian ${VERSION} ${ARCHITECTURE} live" + ;; + emdebian) LH_ISO_VOLUME="Emdebian Live \$(date +%Y%m%d-%H:%M)" ;; |