Warning!

Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!

Fix APTINSTALL variable
authorMichael Prokop <mika@grml.org>
Mon Apr 16 13:03:41 2007 +0200 (19 months ago)
changeset 110377b35ad703d
manifest377b35ad703d
parent 109d4d0136347dc
child 111efb48b513e67
Fix APTINSTALL variable
chroot-script
--- a/chroot-script Mon Apr 16 12:56:10 2007 +0200
+++ b/chroot-script Mon Apr 16 13:03:41 2007 +0200
@@ -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