From: Michael Prokop Date: Mon, 22 Feb 2010 21:23:55 +0000 (+0100) Subject: Display executed debootstrap cmdline when running it. X-Git-Tag: v0.34~8 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=86755390622078baf777237e957a81e10fc7d3b4 Display executed debootstrap cmdline when running it. --- diff --git a/debian/changelog b/debian/changelog index 5153ec9..0b5d03e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,9 @@ grml-debootstrap (0.34) unstable; urgency=low * Move the apt cache removal function to the end to avoid failure of grub installation. + * Display executed debootstrap cmdline when running it. - -- Michael Prokop Mon, 22 Feb 2010 22:17:09 +0100 + -- Michael Prokop Mon, 22 Feb 2010 22:22:59 +0100 grml-debootstrap (0.33) unstable; urgency=low diff --git a/grml-debootstrap b/grml-debootstrap index 31b26eb..91d319c 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -758,8 +758,10 @@ debootstrap_system() { if grep -q "$MNTPOINT" /proc/mounts || [ -n "$DIRECTORY" ] ; then einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${MIRROR}${ISO}" if [ -n "$MIRROR" ] ; then + einfo "Executing: $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $MIRROR" $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $MIRROR else + einfo "Executing: $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $ISO" $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $ISO fi eend $?