From a8b732a61bd8bb4495222c055c36101990dcb568 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 5 Apr 2022 17:47:58 +0200 Subject: [PATCH] mirror-update: added EPEL 9 Change-Id: If635781fc4ad09aa05fa2203b24e56a1763bdced --- .../mirror-update/files/epel-mirror-update | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/playbooks/roles/mirror-update/files/epel-mirror-update b/playbooks/roles/mirror-update/files/epel-mirror-update index 11073d6012..7fecb7628f 100755 --- a/playbooks/roles/mirror-update/files/epel-mirror-update +++ b/playbooks/roles/mirror-update/files/epel-mirror-update @@ -76,6 +76,36 @@ $K5START rsync -rltvz --no-perms \ --delete \ --delete-excluded \ --exclude="Everything/SRPMS" \ + --exclude="Everything/source" \ + --exclude="Everything/ppc64le" \ + --exclude="Everything/s390x" \ + --exclude="Everything/*/debug" \ + $MIRROR/$REPO/ $BASE/$REPO/ + +# NOTE(pabelanger): Validate repomd.xml with upstream release version, this is +# to help protect when our upstream mirror (mirrors.kernel.org) is out of sync +# with its upstream mirror. +REPOMD="Everything/x86_64/repodata/repomd.xml" +SHA1SUM=`curl -s https://dl.fedoraproject.org/pub/epel/8/$REPOMD | sha1sum | cut -d' ' -f1` +echo "$SHA1SUM $BASE/$REPO/$REPOMD" | sha1sum -c - + +# +# EPEL 9 +# + +REPO=9 +if ! [ -f $BASE/$REPO ]; then + $K5START mkdir -p $BASE/$REPO +fi + +date --iso-8601=ns +echo "Running rsync..." +# --no-perms because some of the top-level directories are 02755 +# (setgid) and we can't set that on AFS +$K5START rsync -rltvz --no-perms \ + --delete \ + --delete-excluded \ + --exclude="Everything/source" \ --exclude="Everything/ppc64le" \ --exclude="Everything/s390x" \ --exclude="Everything/*/debug" \