26 lines
498 B
Plaintext
26 lines
498 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
||
|
set -x
|
||
|
fi
|
||
|
set -eu
|
||
|
set -o pipefail
|
||
|
|
||
|
cat << EOF > /etc/yum.repos.d/centos6-latest.repo
|
||
|
[rhel6]
|
||
|
name=centos6
|
||
|
baseurl=http://mirror.centos.org/centos/6/os/x86_64/
|
||
|
enabled=1
|
||
|
metadata_expire=7d
|
||
|
gpgcheck=0
|
||
|
EOF
|
||
|
|
||
|
cat << EOF > /etc/yum.repos.d/epel.repo
|
||
|
[epel]
|
||
|
name=Extra Packages for Enterprise Linux 6 - \$basearch
|
||
|
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=\$basearch
|
||
|
failovermethod=priority
|
||
|
enabled=1
|
||
|
gpgcheck=0
|
||
|
EOF
|