From: Michael Prokop Date: Fri, 3 Nov 2006 21:49:12 +0000 (+0100) Subject: do not quote package list output X-Git-Tag: 0.2~32 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=be87c6d1ae33ce0792222b0ed438496ae9ae3b53;ds=sidebyside do not quote package list output --- diff --git a/chroot-script b/chroot-script index cb90ebe..1524da4 100644 --- a/chroot-script +++ b/chroot-script @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Fre Nov 03 22:27:09 CET 2006 [mika] +# Latest change: Fre Nov 03 22:48:42 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -34,7 +34,7 @@ if [ "$PACKAGES" = 'yes' ] ; then exit 1 else apt-get update - apt-get --force-yes -y install "$(cat /etc/debootstrap/packages)" + apt-get --force-yes -y install $(cat /etc/debootstrap/packages) fi fi diff --git a/grml-debootstrap b/grml-debootstrap index 3793b58..cd96f1a 100644 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -120,7 +120,8 @@ chroot $MNTPOINT /bin/chroot-script eend $? # einfo "Removing chroot-script" -# rm -f $MNTPOINT/bin/chroot-script +# rm -f $MNTPOINT/bin/chroot-script +# rm -rf $MNTPOINT/etc/debootstrap/ # eend $? einfo "Unmount $MNTPOINT"