trove-integration/scripts/files/elements/guest/pre-install.d/00-disable-apt-recommends
Michael Basnight 5a48d23bfe Rename from reddwarf to trove.
Implements Blueprint reddwarf-trove-rename

Change-Id: I67d3452c04cbc31306cd5cc8608bda6d0c71e20e
2013-06-24 11:43:09 -07:00

12 lines
219 B
Bash
Executable File

#!/bin/bash
# Prevent apt from installing recommended packages
set -e
set -o xtrace
dd of=/etc/apt/apt.conf.d/95disable-recommends << _EOF_
APT::Install-Recommends "0";
Apt::Install-Suggests "0";
_EOF_
apt-get update