7c74084eca
Instead of manually creating epel.repo files, make use of the epel element, which will properly install epel-release. Change-Id: Iea7b389bc1ade716c622fd39d5e7dcf119dcb447
17 lines
299 B
Bash
Executable File
17 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
cat << EOF > /etc/yum.repos.d/centos7-latest.repo
|
|
[centos7]
|
|
name=centos7
|
|
mirrorlist=http://mirrorlist.centos.org/?release=7&arch=\$basearch&repo=os&infra=\$infra
|
|
enabled=1
|
|
metadata_expire=7d
|
|
gpgcheck=0
|
|
EOF
|