diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-04-26 22:20:06 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:33 +0100 |
commit | c7424482096a6f1f4239f4b16b9f8695e72d030d (patch) | |
tree | 322e97ecc57dbf7bd2fc629a2c34e6eec6916db0 /functions/packages.sh | |
parent | 9ad7466cf157d55f4a0b630f3e8eb58e86960bbb (diff) | |
download | vyos-live-build-c7424482096a6f1f4239f4b16b9f8695e72d030d.tar.gz vyos-live-build-c7424482096a6f1f4239f4b16b9f8695e72d030d.zip |
Use APT::Install-Recommends to disable installation of recommends for Etch
Diffstat (limited to 'functions/packages.sh')
-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) |