From: Michael Prokop Date: Mon, 13 Oct 2014 08:58:39 +0000 (+0200) Subject: Add support for jessie in dialog based user interface X-Git-Tag: v0.67~18 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=0f66ed4e7d529e6be421019d11bc6b7d9d38c50f;ds=sidebyside Add support for jessie in dialog based user interface --- diff --git a/grml-debootstrap b/grml-debootstrap index 01dff37..efb8501 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -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 }