From 428e7d5791fffd7428abc6ea228fdefe764a0da7 Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Wed, 16 Dec 2020 19:23:15 +0100 Subject: [PATCH] Added Fedora 33 mirror-update role Some new jobs would base on Fedora 33 which is not available on the mirror sever. Change-Id: I144fc965ff3c1102fe56f174b2ce8b7ee93db989 --- playbooks/roles/mirror-update/files/fedora-mirror-update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/mirror-update/files/fedora-mirror-update b/playbooks/roles/mirror-update/files/fedora-mirror-update index ea689ac098..de08193497 100755 --- a/playbooks/roles/mirror-update/files/fedora-mirror-update +++ b/playbooks/roles/mirror-update/files/fedora-mirror-update @@ -45,7 +45,7 @@ echo_ts "----- START FEDORA MIRROR RSYNC RUN -----" echo_ts "Purging old mirrors" $K5START rm -rf $BASE/releases/30 $BASE/updates/30 -for REPO in releases/31 releases/32 development/rawhide; do +for REPO in releases/31 releases/32 releases/33 development/rawhide; do if ! [ -f $BASE/$REPO ]; then $K5START mkdir -p $BASE/$REPO fi @@ -74,7 +74,7 @@ for REPO in releases/31 releases/32 development/rawhide; do echo_ts "... done" done -for REPO in updates/31 updates/32; do +for REPO in updates/31 updates/32 updates/33; do if ! [ -f $BASE/$REPO ]; then $K5START mkdir -p $BASE/$REPO fi