Mateusz Matuszkowiak 4e39b6d0d5 Added stuff related to the CI NG development instance
Change-Id: I7775e3da2ba7b77bae3fa0d5c80d742dd08afaac
2016-06-29 15:28:17 +02:00

16 lines
264 B
Bash
Executable File

#!/bin/bash
# Prevent apt from installing recommended packages
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
dd of=/etc/apt/apt.conf.d/95disable-recommends << _EOF_
APT::Install-Recommends "0";
Apt::Install-Suggests "0";
_EOF_