Add support for jessie in dialog based user interface
authorMichael Prokop <mika@grml.org>
Mon, 13 Oct 2014 08:58:39 +0000 (10:58 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 13 Oct 2014 09:07:54 +0000 (11:07 +0200)
grml-debootstrap

index 01dff37..efb8501 100755 (executable)
@@ -511,13 +511,14 @@ prompt_for_bootmanager()
 # ask for Debian release {{{
 prompt_for_release()
 {
-  [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='wheezy'
+  [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='jessie'
   RELEASE="$(dialog --stdout --title "${PN}" --default-item $DEFAULT_RELEASE --menu \
             "Please enter the Debian release you would like to use for installation:" \
-            0 50 4 \
+            0 50 5 \
             lenny    Debian/5.0 \
             squeeze  Debian/6.0 \
             wheezy   Debian/7.0 \
+            jessie   Debian/8.0 \
             sid      Debian/unstable)"
   [ $? -eq 0 ] || bailout
 }