summaryrefslogtreecommitdiff
path: root/functions/packages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'functions/packages.sh')
-rwxr-xr-xfunctions/packages.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/packages.sh b/functions/packages.sh
index a98bdcc..54b7aba 100755
--- a/functions/packages.sh
+++ b/functions/packages.sh
@@ -34,11 +34,11 @@ Install_package ()
then
case "${LH_APT}" in
apt|apt-get)
- Chroot "apt-get install --yes ${PACKAGES}"
+ Chroot "apt-get install --no-install-recommends --yes ${PACKAGES}"
;;
aptitude)
- Chroot "aptitude install --assume-yes ${PACKAGES}"
+ Chroot "aptitude install --without-recommends --assume-yes ${PACKAGES}"
;;
esac
fi