X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=grml-debootstrap;h=10dbb5b83f32b6d8eaec0ab042b6c2e876d9343e;hp=245f0d8b4118a4cafcbd2c8fd712cedd672afc4a;hb=d588c3ae1d3aac0c0deccd25fdce37930e9d1019;hpb=6276d4b58208dc5623d4b27441ca9e5a75210413 diff --git a/grml-debootstrap b/grml-debootstrap index 245f0d8..10dbb5b 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -11,7 +11,7 @@ set -e # exit on any error # variables {{{ PN="$(basename $0)" -VERSION='0.23' +VERSION='0.24' MNTPOINT="/mnt/debootstrap.$$" # inside the chroot system locales might not be available, so use minimum: @@ -268,7 +268,7 @@ prompt_for_hostname() { HOSTNAME="$(dialog --stdout --title "${PN}" --inputbox \ "Please enter the hostname you would like to use for installation:" \ - 0 0 grml)" + 0 0 $HOSTNAME)" } # }}} @@ -298,7 +298,7 @@ prompt_for_mirror() { MIRROR="$(dialog --stdout --title "${PN}" --inputbox \ "Please enter Debian mirror you would like to use for installing packages." \ - 0 0 http://ftp.de.debian.org/debian)" + 0 0 $MIRROR)" } # }}}