X-Git-Url: https://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=grml-debootstrap;h=efb8501bdb2db0e5a9f61c20a36157456b56cd63;hb=bda9f3a995de8900380dcd29d35182248eb924af;hp=0d10ca0a6005863a8a9d7e02a3a570666b75622d;hpb=430c060be15f60f508428edbc03ea70d9bf04399;p=grml-debootstrap.git diff --git a/grml-debootstrap b/grml-debootstrap index 0d10ca0..efb8501 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -32,7 +32,7 @@ MNTPOINT="/mnt/debootstrap.$$" [ -n "$PACKAGES" ] || PACKAGES='yes' [ -n "$PRE_SCRIPTS" ] || PRE_SCRIPTS='yes' [ -n "$RECONFIGURE" ] || RECONFIGURE='console-data' -[ -n "$RELEASE" ] || RELEASE='wheezy' +[ -n "$RELEASE" ] || RELEASE='jessie' [ -n "$RM_APTCACHE" ] || RM_APTCACHE='yes' [ -n "$SCRIPTS" ] || SCRIPTS='yes' [ -n "$SECURE" ] || SECURE='yes' @@ -62,7 +62,7 @@ Bootstrap options: -m, --mirror Mirror which should be used for apt-get/aptitude. -i, --iso Mountpoint where a Debian ISO is mounted to, for use instead of fetching packages from a mirror. - -r, --release Release of new Debian system (default: wheezy). + -r, --release Release of new Debian system (default: jessie). -t, --target Target partition (/dev/...) or directory where the system should be installed to. -p, --mntpoint Mountpoint used for mounting the target system, @@ -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 }