From: Michael Prokop Date: Wed, 4 Mar 2009 15:17:13 +0000 (+0100) Subject: Use configure $MIRROR and $HOSTNAME as defaults in interactive script X-Git-Tag: v0.24~5 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=d588c3ae1d3aac0c0deccd25fdce37930e9d1019;ds=sidebyside Use configure $MIRROR and $HOSTNAME as defaults in interactive script --- diff --git a/debian/changelog b/debian/changelog index 3aa67ca..1be7bc0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,10 @@ grml-debootstrap (0.24) unstable; urgency=low * Update documentation. + * Use configure $MIRROR and $HOSTNAME as defaults in interactive + script. - -- Michael Prokop Wed, 10 Dec 2008 11:07:56 +0100 + -- Michael Prokop Wed, 04 Mar 2009 16:05:14 +0100 grml-debootstrap (0.23) unstable; urgency=low diff --git a/grml-debootstrap b/grml-debootstrap index 3466eb4..10dbb5b 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -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)" } # }}}