diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-04-26 22:20:06 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-04-26 22:20:06 +0100 |
commit | bb68e3016688f144cf6241c615317605c8e0823f (patch) | |
tree | 322e97ecc57dbf7bd2fc629a2c34e6eec6916db0 | |
parent | 8d241680ca4602250b1e24dc7d712aed421368a5 (diff) | |
download | vyos-live-build-bb68e3016688f144cf6241c615317605c8e0823f.tar.gz vyos-live-build-bb68e3016688f144cf6241c615317605c8e0823f.zip |
Use APT::Install-Recommends to disable installation of recommends for Etch
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-x | functions/packages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/packages.sh b/functions/packages.sh index 54b7aba99..1427d6c06 100755 --- a/functions/packages.sh +++ b/functions/packages.sh @@ -34,7 +34,7 @@ Install_package () then case "${LH_APT}" in apt|apt-get) - Chroot "apt-get install --no-install-recommends --yes ${PACKAGES}" + Chroot "apt-get install -o APT::Install-Recommends=false --yes ${PACKAGES}" ;; aptitude) |