15dbc42d72
Remove the explicit installation of an English language pack and instead just default LANG to C. This settls Perl's noisy warnings and also stops any side effects of different language build hosts. Note that this is set right at the start of the build process, so it should be entirely possible to override if needs be. Change-Id: Id3b31162d4198fa02dc5a4d11168e57dbcd14a5d
9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
# Install baseline packages and tools.
|
|
|
|
set -e
|
|
|
|
apt-get -y update
|
|
apt-get -y install python-software-properties
|
|
add-apt-repository -y ppa:tripleo/demo
|