7b9b82a4d5
Due to changes in centos7 element to use package-installs the order of yum-repos in pre-install.d needs to be changed, to make yum repos available before package-installs is called to install packages. Change-Id: I47b584506465d90247f30bad515a32323e52180e
23 lines
451 B
Bash
Executable File
23 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
cat << EOF > /etc/yum.repos.d/centos7-latest.repo
|
|
[rhel7]
|
|
name=centos7
|
|
baseurl=http://buildlogs.centos.org/centos/7/os/x86_64-latest/
|
|
enabled=1
|
|
metadata_expire=7d
|
|
gpgcheck=0
|
|
EOF
|
|
|
|
cat << EOF > /etc/yum.repos.d/epel.repo
|
|
[epel]
|
|
name=Extra Packages for Enterprise Linux 7 - \$basearch
|
|
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=\$basearch
|
|
failovermethod=priority
|
|
enabled=1
|
|
gpgcheck=0
|
|
EOF
|