mirror of https://github.com/containers/podman.git
Fix repos for CentOS 7 RPM build
CBS repos are gone, so we need a new repos to configure for RPM. Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
parent
6d36d05447
commit
19aa4b4c0b
|
@ -7,11 +7,18 @@ echo "Package manager binary: $pkg_manager"
|
||||||
|
|
||||||
|
|
||||||
if [[ $pkg_manager == *yum ]]; then
|
if [[ $pkg_manager == *yum ]]; then
|
||||||
echo "[virt7-container-common-candidate]
|
echo "[virt7-container]
|
||||||
name=virt7-container-common-candidate
|
name=virt7-container
|
||||||
baseurl=https://cbs.centos.org/repos/virt7-container-common-candidate/x86_64/os/
|
baseurl=https://buildlogs.centos.org/centos/7/virt/x86_64/container/
|
||||||
enabled=1
|
enabled=1
|
||||||
gpgcheck=0" > /etc/yum.repos.d/container_virt.repo
|
gpgcheck=0" > /etc/yum.repos.d/container_virt.repo
|
||||||
|
echo "[paas_openshift_origin311]
|
||||||
|
name=paas_openshift_origin311
|
||||||
|
# Use this if you need the newest *-testing packages
|
||||||
|
# baseurl=https://buildlogs.centos.org/centos/7/paas/x86_64/openshift-origin311/
|
||||||
|
baseurl=http://mirror.centos.org/centos/7/paas/x86_64/openshift-origin311/
|
||||||
|
enabled=1
|
||||||
|
gpgcheck=0" > /etc/yum.repos.d/paas_openshift_origin311.repo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
declare -a PKGS=(\
|
declare -a PKGS=(\
|
||||||
|
|
Loading…
Reference in New Issue