From: Michael Prokop Date: Sat, 24 Oct 2009 01:26:46 +0000 (+0200) Subject: Move displaying installation notes into umount_chroot() X-Git-Tag: v0.31~1 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=21ea6452ed23678e98d6da15cdffc84446c8cde1;ds=inline Move displaying installation notes into umount_chroot() --- diff --git a/grml-debootstrap b/grml-debootstrap index b59784f..946b5be 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -946,8 +946,14 @@ grub_install() { } # }}} -# unmount $MNTPOINRT {{{ +# unmount $MNTPOINT {{{ umount_chroot() { + + # display installation notes: + if [ -n "$INSTALL_NOTES" ] ; then + [ -r "${MNTPOINT}/${INSTALL_NOTES}" ] && cat "${MNTPOINT}/${INSTALL_NOTES}" + fi + if [ -n "$ISODIR" ] ; then if grep -q "$ISODIR" /proc/mounts ; then einfo "Unmount $MNTPOINT/$ISODIR" @@ -997,12 +1003,6 @@ if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then fi # }}} -# display installation notes {{{ -if [ -n "$INSTALL_NOTES" ] ; then - [ -r "$INSTALL_NOTES" ] && cat "$INSTALL_NOTES" -fi -# }}} - # end dialog of autoinstallation {{{ if [ -n "$AUTOINSTALL" ] ; then dialog --title "$PN" --msgbox \