From: Michael Prokop Date: Wed, 8 Jul 2009 00:26:32 +0000 (+0200) Subject: Mention hostname in configuration check dialog X-Git-Tag: v0.29~8 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=91e412240c9fec18eef9534ed407aeac0e879f9e;hp=87394f3ff5c561c572d786c96c4231503ccfb2f2 Mention hostname in configuration check dialog --- diff --git a/debian/changelog b/debian/changelog index a2826cd..d1f5178 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,8 +14,9 @@ grml-debootstrap (0.29) UNRELEASED; urgency=low * Slightly improve wording of -t and -p options. * Do not try to create /etc/debootstrap if it already exists (which might be the case when installing to a directory). + * Mention hostname in configuration check dialog. - -- Michael Prokop Wed, 08 Jul 2009 02:07:01 +0200 + -- Michael Prokop Wed, 08 Jul 2009 02:26:14 +0200 grml-debootstrap (0.28) unstable; urgency=low diff --git a/grml-debootstrap b/grml-debootstrap index 0d2efbb..9bda8e3 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -493,10 +493,11 @@ else # if not running automatic installation display configuration and prompt fo echo echo " Target: $TARGET" case "$MNTPOINT" in "$TARGET") ;; *) echo " Mount point: $MNTPOINT" ;; esac - [ -n "$GRUB" ] && echo " Install grub: $GRUB" || echo " Install grub: no" - [ -n "$RELEASE" ] && echo " Using release: $RELEASE" - [ -n "$MIRROR" ] && echo " Using mirror: $MIRROR" - [ -n "$ISO" ] && echo " Using ISO: $ISO" + [ -n "$GRUB" ] && echo " Install grub: $GRUB" || echo " Install grub: no" + [ -n "$RELEASE" ] && echo " Using release: $RELEASE" + [ -n "$MIRROR" ] && echo " Using mirror: $MIRROR" + [ -n "$HOSTNAME" ] && echo " Using hostname: $HOSTNAME" + [ -n "$ISO" ] && echo " Using ISO: $ISO" case "$MNTPOINT" in "$TARGET") ;; *) echo " Important! Continuing will delete all data from ${TARGET}!" ;; esac echo einfon "Is this ok for you? [y/N] "