turn off Install-Recommends for our apt-get calls
authorChristian Hofstaedtler <ch@grml.org>
Sun, 30 Jan 2011 17:13:53 +0000 (18:13 +0100)
committerChristian Hofstaedtler <ch@grml.org>
Sun, 30 Jan 2011 17:45:56 +0000 (18:45 +0100)
Signed-off-by: Christian Hofstaedtler <ch@grml.org>
Acked-by: Michael Prokop <mika@grml.org>
chroot-script

index 17447ff..00bcb6b 100755 (executable)
@@ -20,7 +20,7 @@ if [ -x /usr/bin/aptitude ] ; then
    APTINSTALL="aptitude -y --without-recommends install $DPKG_OPTIONS"
    APTUPDATE='aptitude update'
 else
-   APTINSTALL="apt-get --force-yes -y install $DPKG_OPTIONS"
+   APTINSTALL="apt-get --force-yes -y --no-install-recommends install $DPKG_OPTIONS"
    APTUPDATE='apt-get update'
 fi