16 lines
264 B
Bash
Executable File
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_
|
|
|
|
|