mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
The centos ppc64le gpg key at mirror.centos.org doesn't exist (link rot?). Replacing it with url from CentOS/sig-core-AltArch on github. Fixes: #2676 Signed-off-by: Aaron Simmons <paleozogt@gmail.com>
19 lines
655 B
Bash
19 lines
655 B
Bash
#
|
|
# Copyright (c) 2018 IBM
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Base Repos
|
|
BASE_URL="http://mirror.centos.org/altarch/${OS_VERSION}/os/${ARCH}/"
|
|
|
|
# Additional Repos
|
|
CENTOS_UPDATES_URL="http://mirror.centos.org/altarch/${OS_VERSION}/updates/${ARCH}/"
|
|
|
|
CENTOS_EXTRAS_URL="http://mirror.centos.org/altarch/${OS_VERSION}/extras/${ARCH}/"
|
|
|
|
CENTOS_PLUS_URL="http://mirror.centos.org/altarch/${OS_VERSION}/centosplus/${ARCH}/"
|
|
|
|
GPG_KEY_ARCH_URL="https://raw.githubusercontent.com/CentOS/sig-core-AltArch/master/centos-release-repo/centos-release-7/ppc/RPM-GPG-KEY-CentOS-SIG-AltArch-7-ppc64le"
|
|
|
|
GPG_KEY_ARCH_FILE="RPM-GPG-KEY-CentOS-SIG-AltArch-7-ppc64le"
|