diff --git a/.github/workflows/base.yaml b/.github/workflows/base.yaml index 64769ef..94e096b 100644 --- a/.github/workflows/base.yaml +++ b/.github/workflows/base.yaml @@ -36,6 +36,8 @@ jobs: - [el9, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [el8, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [el8, linux/arm64, [self-hosted, linux, arm64, ephemeral]] + - [el7, linux/amd64, [self-hosted, linux, x64, ephemeral]] + - [el7, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [amzn2, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2023, linux/amd64, [self-hosted, linux, x64, ephemeral]] diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index dfc2389..c436133 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -55,6 +55,8 @@ jobs: - [el9, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [el8, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [el8, linux/arm64, [self-hosted, linux, arm64, ephemeral]] + - [el7, linux/amd64, [self-hosted, linux, x64, ephemeral]] + - [el7, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [amzn2, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2023, linux/amd64, [self-hosted, linux, x64, ephemeral]] @@ -140,6 +142,8 @@ jobs: - [el9, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [el8, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [el8, linux/arm64, [self-hosted, linux, arm64, ephemeral]] + - [el7, linux/amd64, [self-hosted, linux, x64, ephemeral]] + - [el7, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [amzn2, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2023, linux/amd64, [self-hosted, linux, x64, ephemeral]] @@ -224,6 +228,7 @@ jobs: - debian10 - el9 - el8 + - el7 - amzn2 - amzn2023 - alpine3.15.1 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 19a0098..7530c86 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -73,6 +73,8 @@ jobs: - [el9, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [el8, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [el8, linux/arm64, [self-hosted, linux, arm64, ephemeral]] + - [el7, linux/amd64, [self-hosted, linux, x64, ephemeral]] + - [el7, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2, linux/amd64, [self-hosted, linux, x64, ephemeral]] - [amzn2, linux/arm64, [self-hosted, linux, arm64, ephemeral]] - [amzn2023, linux/amd64, [self-hosted, linux, x64, ephemeral]] diff --git a/Makefile b/Makefile index fff5171..c806e85 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -IMAGES = alpine3.15 amzn2 amzn2023 debian10 debian11 debian12 el8 el9 ubuntu18.04 ubuntu20.04 ubuntu22.04 ubuntu24.04 +IMAGES = alpine3.15 amzn2 amzn2023 debian10 debian11 debian12 el7 el8 el9 ubuntu18.04 ubuntu20.04 ubuntu22.04 ubuntu24.04 .PHONY: all all: $(IMAGES) diff --git a/el7/Dockerfile b/el7/Dockerfile new file mode 100644 index 0000000..08a80c9 --- /dev/null +++ b/el7/Dockerfile @@ -0,0 +1,104 @@ +ARG BUILD_FROM=centos:7 +FROM ${BUILD_FROM} +ARG TARGETPLATFORM + +COPY el7/RPM-GPG-KEY-CentOS-SIG-SCLo /etc/pki/rpm-gpg/ +COPY el7/yum.repos.d/${TARGETPLATFORM}/* /etc/yum.repos.d/ + +RUN yum clean all && \ + yum makecache && \ + yum install epel-release -y && yum update -y + +RUN yum groupinstall -y "Development Tools" && \ + yum install -y autoconf \ + bison-devel \ + centos-release-scl \ + curl \ + cyrus-sasl \ + cyrus-sasl-devel \ + cyrus-sasl-gssapi \ + devtoolset-8-gcc \ + devtoolset-8-gcc-c++ \ + expect \ + flex-devel \ + jq \ + krb5-server \ + krb5-workstation \ + libatomic \ + libtool \ + ncurses-devel \ + python3 \ + python3-pip \ + systemd \ + unixODBC-devel \ + unzip \ + vim \ + wget \ + which \ + zip \ + zlib-devel + +ADD install-openssl11.sh get-git.sh get-automake.sh get-cmake.sh / + +WORKDIR / + +# We need git >= 2.18 otherwise actions/checkout@v3 in github +# workflows will use REST API to download source code archive without +# .git directory instead of normal git clone. And if release is +# configured to take it's version from git tag, rebar3 will not be +# able to resolve the version correctly and will fallback to 0.0.0, +# like it happened with emqtt-bench. +# The error from actions/checkout@v3 is as follows: +# > The repository will be downloaded using the GitHub REST API +# > To create a local Git repository instead, add Git 2.18 or higher to the PATH + +# - have to uninstall stock git to cleanup all git backend files, +# otherwise git from the newer version may encounter +# an error like "bogus format in GIT_CONFIG_PARAMETERS" +# - gnu99 flag is to address https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/5948 +# - libcurl-devel is needed to support clone from https remotes +RUN yum remove -y git* \ + && yum install -y libcurl-devel \ + && env DEVELOPER_CFLAGS='-std=gnu99' /get-git.sh \ + && git --version + +RUN /get-automake.sh +RUN /install-openssl11.sh +ENV OPENSSL_ROOT_DIR=/usr/local/openssl +RUN /get-cmake.sh build + +# We have to reinstall `glibc-common` after removing the override just +# for the `arm64` platform build of CentOS 7. While just setting the +# locale works for `amd64`, even `en_US.UTF-8`, which is in the +# override for `arm64`, is not available... +RUN sed -i -e '/override_install_langs/d' /etc/yum.conf && \ + yum -q -y reinstall glibc-common + +RUN alternatives --install /usr/bin/python python /usr/bin/python2 1 && \ + alternatives --install /usr/bin/python python /usr/bin/python3 2 && \ + alternatives --set python /usr/bin/python3 && \ + alternatives --install /usr/bin/pip pip /usr/bin/pip2 1 && \ + alternatives --install /usr/bin/pip pip /usr/bin/pip3 2 && \ + alternatives --set pip /usr/bin/pip3 && \ + sed 's/python/python2/g' -i /usr/bin/yum + +# cleanup +RUN yum clean packages && \ + rm -rf /tmp/* && \ + rm -rf /var/tmp/* && \ + rm /install-openssl11.sh /get-git.sh /get-automake.sh /get-cmake.sh + +ENV BASH_ENV=/opt/rh/devtoolset-8/enable \ + ENV=/opt/rh/devtoolset-8/enable \ + PROMPT_COMMAND=". /opt/rh/devtoolset-8/enable" + +# Elixir complains if runs without UTF-8 +# CentOS 7, exceptionally, has an `en_US.UTF-8` override as does not +# have `C.UTF-8`. +ENV LC_ALL=en_US.UTF-8 +ENV LANG=en_US.UTF-8 + +# merge the two dirs +ENV ACLOCAL_PATH=/usr/share/aclocal:/usr/local/share/aclocal + +CMD [ "/bin/bash" ] diff --git a/el7/RPM-GPG-KEY-CentOS-SIG-SCLo b/el7/RPM-GPG-KEY-CentOS-SIG-SCLo new file mode 100644 index 0000000..85fc96f --- /dev/null +++ b/el7/RPM-GPG-KEY-CentOS-SIG-SCLo @@ -0,0 +1,20 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v2.0.22 (GNU/Linux) + +mQENBFYM/AoBCADR9Q5cb+H5ndx+QkzNBQ88wcD+g112yvnHNlSiBMOnNEGHuKPJ +tujZ+eWXP3K6ucJckT91WxfQ2fxPr9jQ0xpZytcHcZdTfn3vKL9+OwR0npp+qmcz +rK8/EzVz/SWSgBQ5xT/HUvaeoVAbzBHSng0r2njnBAqABKAoTxgyRGKSCWduKD32 +7PF2ZpqeDFFhd99Ykt6ar8SlV8ToqH6F7An0ILeejINVbHUxd6+wsbpcOwQ4mGAa +/CPXeqqLGj62ASBv36xQr34hlN/9zQMViaKkacl8zkuvwhuHf4b4VlGVCe6VILpQ +8ytKMV/lcg7YpMfRq4KVWBjCwkvk6zg6KxaHABEBAAG0aENlbnRPUyBTb2Z0d2Fy +ZUNvbGxlY3Rpb25zIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lh +bEludGVyZXN0R3JvdXAvU0NMbykgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMB +CgAjAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AFAmIgbg0ACgkQTrhOcfLu +nVUzkAgAgJSl++PWo69OGI8eUn53whhfJ6ZyKCOyI9+Flghtfwq1mdcP4dIoAubw +nlQcvEsE4Erob2I1S+n/dXYh9y2+Si3HdXRreKzC1rCSG5ebYRrEqeMoJhBoDFSd +xydtxi03l+Dh2iWtLtXpAM85qHvgIrPfdUnLRVbDBT52Ph5igZl8ux2ooJ94CPm4 +yTG/0aPIebNQsLP8LEpa2wad2WJfIeFgjEHranWIzhzapGgwyf2Iu9Sz3L8ljiz2 +2HixHpI2es3IqgLyRsTBo2/EdbvMJWlFwiESe1UQIW6ObKNnVabIHUAxZgOlj59o +JhPOzTBG+Ma2fLs+ZFBV88cpKdctFQ== +=+Gr2 +-----END PGP PUBLIC KEY BLOCK----- diff --git a/el7/yum.repos.d/linux/amd64/CentOS-Base.repo b/el7/yum.repos.d/linux/amd64/CentOS-Base.repo new file mode 100644 index 0000000..fd32612 --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-Base.repo @@ -0,0 +1,58 @@ +# CentOS-Base.repo +# +# The mirror system uses the connecting IP address of the client and the +# update status of each mirror to pick mirrors that are updated to and +# geographically close to the client. You should use this for CentOS updates +# unless you are manually picking other mirrors. +# +# If the mirrorlist= does not work for you, as a fall back you can try the +# remarked out baseurl= line instead. +# +# + +[base] +name=CentOS-$releasever - Base +baseurl=http://vault.centos.org/$releasever/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#released updates +[updates] +name=CentOS-$releasever - Updates +baseurl=http://vault.centos.org/$releasever/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#additional packages that may be useful +[extras] +name=CentOS-$releasever - Extras +baseurl=http://vault.centos.org/$releasever/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 +enabled=1 + +#additional packages that extend functionality of existing packages +[centosplus] +name=CentOS-$releasever - Plus +baseurl=http://vault.centos.org/$releasever/centosplus/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +[centos-sclo-rh] +name=CentOS-$releasever - SCLo rh +baseurl=http://vault.centos.org/$releasever/sclo/$basearch/rh/ +gpgcheck=1 +enabled=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo + +[centos-sclo-sclo] +name=CentOS-$releasever - SCLo sclo +baseurl=http://vault.centos.org/$releasever/sclo/$basearch/sclo/ +gpgcheck=1 +enabled=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo diff --git a/el7/yum.repos.d/linux/amd64/CentOS-CR.repo b/el7/yum.repos.d/linux/amd64/CentOS-CR.repo new file mode 100644 index 0000000..f523864 --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-CR.repo @@ -0,0 +1,29 @@ +# CentOS-CR.repo +# +# The Continuous Release ( CR ) repository contains rpms that are due in the next +# release for a specific CentOS Version ( eg. next release in CentOS-7 ); these rpms +# are far less tested, with no integration checking or update path testing having +# taken place. They are still built from the upstream sources, but might not map +# to an exact upstream distro release. +# +# These packages are made available soon after they are built, for people willing +# to test their environments, provide feedback on content for the next release, and +# for people looking for early-access to next release content. +# +# The CR repo is shipped in a disabled state by default; its important that users +# understand the implications of turning this on. +# +# NOTE: We do not use a mirrorlist for the CR repos, to ensure content is available +# to everyone as soon as possible, and not need to wait for the external +# mirror network to seed first. However, many local mirrors will carry CR repos +# and if desired you can use one of these local mirrors by editing the baseurl +# line in the repo config below. +# + +[cr] +name=CentOS-$releasever - cr +baseurl=http://vault.centos.org/$releasever/cr/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 +enabled=0 diff --git a/el7/yum.repos.d/linux/amd64/CentOS-Media.repo b/el7/yum.repos.d/linux/amd64/CentOS-Media.repo new file mode 100644 index 0000000..20203c4 --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-Media.repo @@ -0,0 +1,23 @@ +# CentOS-Media.repo +# +# This repo can be used with mounted DVD media, verify the mount point for +# CentOS-7. You can use this repo and yum to install items directly off the +# DVD ISO that we release. +# +# To use this repo, put in your DVD and use it with the other repos too: +# yum --enablerepo=c7-media [command] +# +# or for ONLY the media repo, do this: +# +# yum --disablerepo=\* --enablerepo=c7-media [command] + +[c7-media] +name=CentOS-$releasever - Media +baseurl=file:///media/CentOS/ + file:///media/cdrom/ + file:///media/cdrecorder/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + diff --git a/el7/yum.repos.d/linux/amd64/CentOS-Sources.repo b/el7/yum.repos.d/linux/amd64/CentOS-Sources.repo new file mode 100644 index 0000000..14cbbe2 --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-Sources.repo @@ -0,0 +1,46 @@ +# CentOS-Sources.repo +# +# The mirror system uses the connecting IP address of the client and the +# update status of each mirror to pick mirrors that are updated to and +# geographically close to the client. You should use this for CentOS updates +# unless you are manually picking other mirrors. +# +# If the mirrorlist= does not work for you, as a fall back you can try the +# remarked out baseurl= line instead. +# +# + +[base-source] +name=CentOS-$releasever - Base Sources +baseurl=http://vault.centos.org/centos/$releasever/os/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#released updates +[updates-source] +name=CentOS-$releasever - Updates Sources +baseurl=http://vault.centos.org/centos/$releasever/updates/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#additional packages that may be useful +[extras-source] +name=CentOS-$releasever - Extras Sources +baseurl=http://vault.centos.org/centos/$releasever/extras/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#additional packages that extend functionality of existing packages +[centosplus-source] +name=CentOS-$releasever - Plus Sources +baseurl=http://vault.centos.org/centos/$releasever/centosplus/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 diff --git a/el7/yum.repos.d/linux/amd64/CentOS-Vault.repo b/el7/yum.repos.d/linux/amd64/CentOS-Vault.repo new file mode 100644 index 0000000..e0ec3cd --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-Vault.repo @@ -0,0 +1,412 @@ +# CentOS Vault contains rpms from older releases in the CentOS-7 +# tree. + +# C7.1.1503 +[C7.1.1503-base] +name=CentOS-7.1.1503 - Base +baseurl=http://vault.centos.org/centos/7.1.1503/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-updates] +name=CentOS-7.1.1503 - Updates +baseurl=http://vault.centos.org/centos/7.1.1503/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-extras] +name=CentOS-7.1.1503 - Extras +baseurl=http://vault.centos.org/centos/7.1.1503/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-centosplus] +name=CentOS-7.1.1503 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.1.1503/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-fasttrack] +name=CentOS-7.1.1503 - Fasttrack +baseurl=http://vault.centos.org/centos/7.1.1503/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.2.1511 +[C7.2.1511-base] +name=CentOS-7.2.1511 - Base +baseurl=http://vault.centos.org/centos/7.2.1511/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-updates] +name=CentOS-7.2.1511 - Updates +baseurl=http://vault.centos.org/centos/7.2.1511/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-extras] +name=CentOS-7.2.1511 - Extras +baseurl=http://vault.centos.org/centos/7.2.1511/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-centosplus] +name=CentOS-7.2.1511 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.2.1511/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-fasttrack] +name=CentOS-7.2.1511 - Fasttrack +baseurl=http://vault.centos.org/centos/7.2.1511/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.2.1603 +[C7.2.1603-base] +name=CentOS-7.2.1603 - Base +baseurl=http://vault.centos.org/centos/7.2.1603/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-updates] +name=CentOS-7.2.1603 - Updates +baseurl=http://vault.centos.org/centos/7.2.1603/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-extras] +name=CentOS-7.2.1603 - Extras +baseurl=http://vault.centos.org/centos/7.2.1603/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-centosplus] +name=CentOS-7.2.1603 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.2.1603/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-fasttrack] +name=CentOS-7.2.1603 - Fasttrack +baseurl=http://vault.centos.org/centos/7.2.1603/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.3.1611 +[C7.3.1611-base] +name=CentOS-7.3.1611 - Base +baseurl=http://vault.centos.org/centos/7.3.1611/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-updates] +name=CentOS-7.3.1611 - Updates +baseurl=http://vault.centos.org/centos/7.3.1611/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-extras] +name=CentOS-7.3.1611 - Extras +baseurl=http://vault.centos.org/centos/7.3.1611/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-centosplus] +name=CentOS-7.3.1611 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.3.1611/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-fasttrack] +name=CentOS-7.3.1611 - Fasttrack +baseurl=http://vault.centos.org/centos/7.3.1611/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.4.1708 +[C7.4.1708-base] +name=CentOS-7.4.1708 - Base +baseurl=http://vault.centos.org/centos/7.4.1708/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-updates] +name=CentOS-7.4.1708 - Updates +baseurl=http://vault.centos.org/centos/7.4.1708/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-extras] +name=CentOS-7.4.1708 - Extras +baseurl=http://vault.centos.org/centos/7.4.1708/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-centosplus] +name=CentOS-7.4.1708 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.4.1708/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-fasttrack] +name=CentOS-7.4.1708 - Fasttrack +baseurl=http://vault.centos.org/centos/7.4.1708/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.5.1804 +[C7.5.1804-base] +name=CentOS-7.5.1804 - Base +baseurl=http://vault.centos.org/centos/7.5.1804/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-updates] +name=CentOS-7.5.1804 - Updates +baseurl=http://vault.centos.org/centos/7.5.1804/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-extras] +name=CentOS-7.5.1804 - Extras +baseurl=http://vault.centos.org/centos/7.5.1804/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-centosplus] +name=CentOS-7.5.1804 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.5.1804/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-fasttrack] +name=CentOS-7.5.1804 - Fasttrack +baseurl=http://vault.centos.org/centos/7.5.1804/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.6.1810 +[C7.6.1810-base] +name=CentOS-7.6.1810 - Base +baseurl=http://vault.centos.org/centos/7.6.1810/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-updates] +name=CentOS-7.6.1810 - Updates +baseurl=http://vault.centos.org/centos/7.6.1810/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-extras] +name=CentOS-7.6.1810 - Extras +baseurl=http://vault.centos.org/centos/7.6.1810/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-centosplus] +name=CentOS-7.6.1810 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.6.1810/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-fasttrack] +name=CentOS-7.6.1810 - Fasttrack +baseurl=http://vault.centos.org/centos/7.6.1810/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.7.1908 +[C7.7.1908-base] +name=CentOS-7.7.1908 - Base +baseurl=http://vault.centos.org/centos/7.7.1908/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-updates] +name=CentOS-7.7.1908 - Updates +baseurl=http://vault.centos.org/centos/7.7.1908/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-extras] +name=CentOS-7.7.1908 - Extras +baseurl=http://vault.centos.org/centos/7.7.1908/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-centosplus] +name=CentOS-7.7.1908 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.7.1908/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-fasttrack] +name=CentOS-7.7.1908 - Fasttrack +baseurl=http://vault.centos.org/centos/7.7.1908/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.8.2003 +[C7.8.2003-base] +name=CentOS-7.8.2003 - Base +baseurl=http://vault.centos.org/centos/7.8.2003/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-updates] +name=CentOS-7.8.2003 - Updates +baseurl=http://vault.centos.org/centos/7.8.2003/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-extras] +name=CentOS-7.8.2003 - Extras +baseurl=http://vault.centos.org/centos/7.8.2003/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-centosplus] +name=CentOS-7.8.2003 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.8.2003/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-fasttrack] +name=CentOS-7.8.2003 - Fasttrack +baseurl=http://vault.centos.org/centos/7.8.2003/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.9.2009 +[C7.9.2009-base] +name=CentOS-7.9.2009 - Base +baseurl=http://vault.centos.org/centos/7.9.2009/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-updates] +name=CentOS-7.9.2009 - Updates +baseurl=http://vault.centos.org/centos/7.9.2009/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-extras] +name=CentOS-7.9.2009 - Extras +baseurl=http://vault.centos.org/centos/7.9.2009/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-centosplus] +name=CentOS-7.9.2009 - CentOSPlus +baseurl=http://vault.centos.org/centos/7.9.2009/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-fasttrack] +name=CentOS-7.9.2009 - Fasttrack +baseurl=http://vault.centos.org/centos/7.9.2009/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 diff --git a/el7/yum.repos.d/linux/amd64/CentOS-fasttrack.repo b/el7/yum.repos.d/linux/amd64/CentOS-fasttrack.repo new file mode 100644 index 0000000..072a6ae --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-fasttrack.repo @@ -0,0 +1,8 @@ +[fasttrack] +name=CentOS-7 - fasttrack +baseurl=http://vault.centos.org/centos/$releasever/fasttrack/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + diff --git a/el7/yum.repos.d/linux/amd64/CentOS-kernel.repo b/el7/yum.repos.d/linux/amd64/CentOS-kernel.repo new file mode 100644 index 0000000..28e60a9 --- /dev/null +++ b/el7/yum.repos.d/linux/amd64/CentOS-kernel.repo @@ -0,0 +1,16 @@ +[centos-kernel] +name=CentOS LTS Kernels for $basearch +baseurl=http://vault.centos.org/centos/7/kernel/$basearch/kernel-$kvariant +enabled=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +[centos-kernel-experimental] +name=CentOS Experimental Kernels for $basearch +baseurl=http://vault.centos.org/centos/7/experimental/$basearch/kernel-$kvariant +enabled=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + diff --git a/el7/yum.repos.d/linux/arm64/CentOS-Base.repo b/el7/yum.repos.d/linux/arm64/CentOS-Base.repo new file mode 100644 index 0000000..4bd058b --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-Base.repo @@ -0,0 +1,58 @@ +# CentOS-Base.repo +# +# The mirror system uses the connecting IP address of the client and the +# update status of each mirror to pick mirrors that are updated to and +# geographically close to the client. You should use this for CentOS updates +# unless you are manually picking other mirrors. +# +# If the mirrorlist= does not work for you, as a fall back you can try the +# remarked out baseurl= line instead. +# +# + +[base] +name=CentOS-$releasever - Base +baseurl=http://vault.centos.org/altarch/$releasever/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#released updates +[updates] +name=CentOS-$releasever - Updates +baseurl=http://vault.centos.org/altarch/$releasever/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#additional packages that may be useful +[extras] +name=CentOS-$releasever - Extras +baseurl=http://vault.centos.org/altarch/$releasever/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 +enabled=1 + +#additional packages that extend functionality of existing packages +[centosplus] +name=CentOS-$releasever - Plus +baseurl=http://vault.centos.org/altarch/$releasever/centosplus/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +[centos-sclo-rh] +name=CentOS-$releasever - SCLo rh +baseurl=http://vault.centos.org/altarch/$releasever/sclo/$basearch/rh/ +gpgcheck=1 +enabled=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo + +[centos-sclo-sclo] +name=CentOS-$releasever - SCLo sclo +baseurl=http://vault.centos.org/altarch/$releasever/sclo/$basearch/sclo/ +gpgcheck=1 +enabled=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo diff --git a/el7/yum.repos.d/linux/arm64/CentOS-CR.repo b/el7/yum.repos.d/linux/arm64/CentOS-CR.repo new file mode 100644 index 0000000..0b7eb14 --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-CR.repo @@ -0,0 +1,29 @@ +# CentOS-CR.repo +# +# The Continuous Release ( CR ) repository contains rpms that are due in the next +# release for a specific CentOS Version ( eg. next release in CentOS-7 ); these rpms +# are far less tested, with no integration checking or update path testing having +# taken place. They are still built from the upstream sources, but might not map +# to an exact upstream distro release. +# +# These packages are made available soon after they are built, for people willing +# to test their environments, provide feedback on content for the next release, and +# for people looking for early-access to next release content. +# +# The CR repo is shipped in a disabled state by default; its important that users +# understand the implications of turning this on. +# +# NOTE: We do not use a mirrorlist for the CR repos, to ensure content is available +# to everyone as soon as possible, and not need to wait for the external +# mirror network to seed first. However, many local mirrors will carry CR repos +# and if desired you can use one of these local mirrors by editing the baseurl +# line in the repo config below. +# + +[cr] +name=CentOS-$releasever - cr +baseurl=http://vault.centos.org/altarch/$releasever/cr/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 +enabled=0 diff --git a/el7/yum.repos.d/linux/arm64/CentOS-Media.repo b/el7/yum.repos.d/linux/arm64/CentOS-Media.repo new file mode 100644 index 0000000..20203c4 --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-Media.repo @@ -0,0 +1,23 @@ +# CentOS-Media.repo +# +# This repo can be used with mounted DVD media, verify the mount point for +# CentOS-7. You can use this repo and yum to install items directly off the +# DVD ISO that we release. +# +# To use this repo, put in your DVD and use it with the other repos too: +# yum --enablerepo=c7-media [command] +# +# or for ONLY the media repo, do this: +# +# yum --disablerepo=\* --enablerepo=c7-media [command] + +[c7-media] +name=CentOS-$releasever - Media +baseurl=file:///media/CentOS/ + file:///media/cdrom/ + file:///media/cdrecorder/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + diff --git a/el7/yum.repos.d/linux/arm64/CentOS-Sources.repo b/el7/yum.repos.d/linux/arm64/CentOS-Sources.repo new file mode 100644 index 0000000..10c194d --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-Sources.repo @@ -0,0 +1,46 @@ +# CentOS-Sources.repo +# +# The mirror system uses the connecting IP address of the client and the +# update status of each mirror to pick mirrors that are updated to and +# geographically close to the client. You should use this for CentOS updates +# unless you are manually picking other mirrors. +# +# If the mirrorlist= does not work for you, as a fall back you can try the +# remarked out baseurl= line instead. +# +# + +[base-source] +name=CentOS-$releasever - Base Sources +baseurl=http://vault.centos.org/altarch/$releasever/os/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#released updates +[updates-source] +name=CentOS-$releasever - Updates Sources +baseurl=http://vault.centos.org/altarch/$releasever/updates/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#additional packages that may be useful +[extras-source] +name=CentOS-$releasever - Extras Sources +baseurl=http://vault.centos.org/altarch/$releasever/extras/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +#additional packages that extend functionality of existing packages +[centosplus-source] +name=CentOS-$releasever - Plus Sources +baseurl=http://vault.centos.org/altarch/$releasever/centosplus/Source/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 diff --git a/el7/yum.repos.d/linux/arm64/CentOS-Vault.repo b/el7/yum.repos.d/linux/arm64/CentOS-Vault.repo new file mode 100644 index 0000000..5675243 --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-Vault.repo @@ -0,0 +1,412 @@ +# CentOS Vault contains rpms from older releases in the CentOS-7 +# tree. + +# C7.1.1503 +[C7.1.1503-base] +name=CentOS-7.1.1503 - Base +baseurl=http://vault.centos.org/altarch/7.1.1503/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-updates] +name=CentOS-7.1.1503 - Updates +baseurl=http://vault.centos.org/altarch/7.1.1503/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-extras] +name=CentOS-7.1.1503 - Extras +baseurl=http://vault.centos.org/altarch/7.1.1503/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-centosplus] +name=CentOS-7.1.1503 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.1.1503/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.1.1503-fasttrack] +name=CentOS-7.1.1503 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.1.1503/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.2.1511 +[C7.2.1511-base] +name=CentOS-7.2.1511 - Base +baseurl=http://vault.centos.org/altarch/7.2.1511/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-updates] +name=CentOS-7.2.1511 - Updates +baseurl=http://vault.centos.org/altarch/7.2.1511/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-extras] +name=CentOS-7.2.1511 - Extras +baseurl=http://vault.centos.org/altarch/7.2.1511/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-centosplus] +name=CentOS-7.2.1511 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.2.1511/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1511-fasttrack] +name=CentOS-7.2.1511 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.2.1511/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.2.1603 +[C7.2.1603-base] +name=CentOS-7.2.1603 - Base +baseurl=http://vault.centos.org/altarch/7.2.1603/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-updates] +name=CentOS-7.2.1603 - Updates +baseurl=http://vault.centos.org/altarch/7.2.1603/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-extras] +name=CentOS-7.2.1603 - Extras +baseurl=http://vault.centos.org/altarch/7.2.1603/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-centosplus] +name=CentOS-7.2.1603 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.2.1603/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.2.1603-fasttrack] +name=CentOS-7.2.1603 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.2.1603/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.3.1611 +[C7.3.1611-base] +name=CentOS-7.3.1611 - Base +baseurl=http://vault.centos.org/altarch/7.3.1611/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-updates] +name=CentOS-7.3.1611 - Updates +baseurl=http://vault.centos.org/altarch/7.3.1611/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-extras] +name=CentOS-7.3.1611 - Extras +baseurl=http://vault.centos.org/altarch/7.3.1611/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-centosplus] +name=CentOS-7.3.1611 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.3.1611/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.3.1611-fasttrack] +name=CentOS-7.3.1611 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.3.1611/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.4.1708 +[C7.4.1708-base] +name=CentOS-7.4.1708 - Base +baseurl=http://vault.centos.org/altarch/7.4.1708/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-updates] +name=CentOS-7.4.1708 - Updates +baseurl=http://vault.centos.org/altarch/7.4.1708/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-extras] +name=CentOS-7.4.1708 - Extras +baseurl=http://vault.centos.org/altarch/7.4.1708/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-centosplus] +name=CentOS-7.4.1708 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.4.1708/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.4.1708-fasttrack] +name=CentOS-7.4.1708 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.4.1708/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.5.1804 +[C7.5.1804-base] +name=CentOS-7.5.1804 - Base +baseurl=http://vault.centos.org/altarch/7.5.1804/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-updates] +name=CentOS-7.5.1804 - Updates +baseurl=http://vault.centos.org/altarch/7.5.1804/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-extras] +name=CentOS-7.5.1804 - Extras +baseurl=http://vault.centos.org/altarch/7.5.1804/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-centosplus] +name=CentOS-7.5.1804 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.5.1804/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.5.1804-fasttrack] +name=CentOS-7.5.1804 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.5.1804/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.6.1810 +[C7.6.1810-base] +name=CentOS-7.6.1810 - Base +baseurl=http://vault.centos.org/altarch/7.6.1810/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-updates] +name=CentOS-7.6.1810 - Updates +baseurl=http://vault.centos.org/altarch/7.6.1810/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-extras] +name=CentOS-7.6.1810 - Extras +baseurl=http://vault.centos.org/altarch/7.6.1810/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-centosplus] +name=CentOS-7.6.1810 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.6.1810/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.6.1810-fasttrack] +name=CentOS-7.6.1810 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.6.1810/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.7.1908 +[C7.7.1908-base] +name=CentOS-7.7.1908 - Base +baseurl=http://vault.centos.org/altarch/7.7.1908/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-updates] +name=CentOS-7.7.1908 - Updates +baseurl=http://vault.centos.org/altarch/7.7.1908/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-extras] +name=CentOS-7.7.1908 - Extras +baseurl=http://vault.centos.org/altarch/7.7.1908/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-centosplus] +name=CentOS-7.7.1908 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.7.1908/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.7.1908-fasttrack] +name=CentOS-7.7.1908 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.7.1908/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.8.2003 +[C7.8.2003-base] +name=CentOS-7.8.2003 - Base +baseurl=http://vault.centos.org/altarch/7.8.2003/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-updates] +name=CentOS-7.8.2003 - Updates +baseurl=http://vault.centos.org/altarch/7.8.2003/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-extras] +name=CentOS-7.8.2003 - Extras +baseurl=http://vault.centos.org/altarch/7.8.2003/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-centosplus] +name=CentOS-7.8.2003 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.8.2003/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.8.2003-fasttrack] +name=CentOS-7.8.2003 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.8.2003/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +# C7.9.2009 +[C7.9.2009-base] +name=CentOS-7.9.2009 - Base +baseurl=http://vault.centos.org/altarch/7.9.2009/os/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-updates] +name=CentOS-7.9.2009 - Updates +baseurl=http://vault.centos.org/altarch/7.9.2009/updates/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-extras] +name=CentOS-7.9.2009 - Extras +baseurl=http://vault.centos.org/altarch/7.9.2009/extras/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-centosplus] +name=CentOS-7.9.2009 - CentOSPlus +baseurl=http://vault.centos.org/altarch/7.9.2009/centosplus/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 + +[C7.9.2009-fasttrack] +name=CentOS-7.9.2009 - Fasttrack +baseurl=http://vault.centos.org/altarch/7.9.2009/fasttrack/$basearch/ +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-$basearch +enabled=0 diff --git a/el7/yum.repos.d/linux/arm64/CentOS-aarch64-kernel.repo b/el7/yum.repos.d/linux/arm64/CentOS-aarch64-kernel.repo new file mode 100644 index 0000000..e2aa4e4 --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-aarch64-kernel.repo @@ -0,0 +1,16 @@ +[centos-kernel] +name=CentOS LTS Kernels for $basearch +baseurl=http://vault.centos.org/altarch/7/kernel/$basearch/kernel-$kvariant +enabled=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + +[centos-kernel-experimental] +name=CentOS Experimental Kernels for $basearch +baseurl=http://vault.centos.org/altarch/7/experimental/$basearch/kernel-$kvariant +enabled=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 + diff --git a/el7/yum.repos.d/linux/arm64/CentOS-fasttrack.repo b/el7/yum.repos.d/linux/arm64/CentOS-fasttrack.repo new file mode 100644 index 0000000..e9e2dc9 --- /dev/null +++ b/el7/yum.repos.d/linux/arm64/CentOS-fasttrack.repo @@ -0,0 +1,8 @@ +[fasttrack] +name=CentOS-7 - fasttrack +baseurl=http://vault.centos.org/altarch/$releasever/fasttrack/$basearch/ +gpgcheck=1 +enabled=0 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 + file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 +