5a48d23bfe
Implements Blueprint reddwarf-trove-rename Change-Id: I67d3452c04cbc31306cd5cc8608bda6d0c71e20e
12 lines
219 B
Bash
Executable File
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 |