1951ac8838
This disables apt's default behaviour of installing packages in the Recommends field of other packages. While this can be useful, it causes a lot of unnecessary software to be installed and may cause explicit dependencies to be missed in some circumstances. Change-Id: I10f4519290e6b3dafda3365c0c5dcc42ad17c090
9 lines
180 B
Bash
Executable File
9 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
# Install baseline packages and tools.
|
|
|
|
set -e
|
|
|
|
apt-get -y update
|
|
apt-get -y install python-software-properties language-pack-en
|
|
add-apt-repository -y ppa:tripleo/demo
|