Adding own iso volume when beeing in release mode.

This commit is contained in:
Daniel Baumann 2009-02-08 11:13:32 +01:00
parent 99a850bd20
commit c2e7d59973

View File

@ -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)"
;;