X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=grml-debootstrap;h=8d9cffb8a07fbed92ecbf5db8c9471e3a6429600;hp=b3fc9da9d6ec3b0a4d92132b2a99f5eb695786bd;hb=cbe2eaeafb3d6606e9503d69589f061e9baa295f;hpb=57a2d9c32c007161bdf3dbfc32c67dee98eac974 diff --git a/grml-debootstrap b/grml-debootstrap index b3fc9da..8d9cffb 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -305,12 +305,13 @@ prompt_for_bootmanager() # ask for Debian release {{{ prompt_for_release() { - [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='lenny' + [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='squeeze' RELEASE="$(dialog --stdout --title "${PN}" --default-item $DEFAULT_RELEASE --menu \ "Please enter the Debian release you would like to use for installation:" \ - 0 50 3 \ - lenny Debian/stable \ - squeeze Debian/testing \ + 0 50 4 \ + lenny Debian/old-stable \ + squeeze Debian/stable \ + wheezy Debian/testing \ sid Debian/unstable)" } # }}}