Also respecting general apt/aptitude options for the install functions used during binary stage.

This commit is contained in:
Cody A.W. Somerville 2009-06-04 13:57:47 +02:00 committed by Daniel Baumann
parent fb715a51eb
commit 5239579ad0
1 changed files with 4 additions and 4 deletions

View File

@ -32,11 +32,11 @@ Install_package ()
then
case "${LH_APT}" in
apt|apt-get)
Chroot chroot "apt-get install -o APT::Install-Recommends=false --yes ${_LH_PACKAGES}"
Chroot chroot "apt-get install -o APT::Install-Recommends=false ${APT_OPTIONS} ${_LH_PACKAGES}"
;;
aptitude)
Chroot chroot "aptitude install --without-recommends --assume-yes ${_LH_PACKAGES}"
Chroot chroot "aptitude install --without-recommends ${APTITUDE_OPTIONS} ${_LH_PACKAGES}"
;;
esac
fi
@ -48,11 +48,11 @@ Remove_package ()
then
case "${LH_APT}" in
apt|apt-get)
Chroot chroot "apt-get remove --purge --yes ${_LH_PACKAGES}"
Chroot chroot "apt-get remove --purge ${APT_OPTIONS} ${_LH_PACKAGES}"
;;
aptitude)
Chroot chroot "aptitude purge --assume-yes ${_LH_PACKAGES}"
Chroot chroot "aptitude purge ${APTITUDE_OPTIONS} ${_LH_PACKAGES}"
;;
esac
fi