From: Michael Prokop Date: Mon, 16 Apr 2007 11:03:41 +0000 (+0200) Subject: Fix APTINSTALL variable X-Git-Tag: 0.7~34 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=bd35f4be8bcd23fdc58682a92622c5928dbc0114;hp=a64dc69b9715e387d5d760c567eefd08c6f3cfce Fix APTINSTALL variable --- diff --git a/chroot-script b/chroot-script index cdb6c0a..40646fa 100644 --- a/chroot-script +++ b/chroot-script @@ -16,10 +16,10 @@ set -e # exit on any error # use aptitude only if it's available if [ -x /usr/bin/aptitude ] ; then - APTINSTALL='aptitude -y' + APTINSTALL='aptitude -y install ' APTUPDATE='aptitude update' else - APTINSTALL='apt-get --force-yes -y' + APTINSTALL='apt-get --force-yes -y install' APTUPDATE='apt-get update' fi