Merge "Disable Apt Recommends."

This commit is contained in:
Jenkins 2013-01-20 22:46:39 +00:00 committed by Gerrit Code Review
commit 35487c8639
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#!/bin/sh
# Prevent apt from installing recommended packages
dd of=/etc/apt/apt.conf.d/95disable-recommends << _EOF_
APT::Install-Recommends "0";
Apt::Install-Suggests "0";
_EOF_