Stop mirroring CentOS 7 packages
We have removed CentOS 7 from nodepool now we can stop mirroring pacakges for it. This deletes official CentOS 7 package mirror content and OBS packages mirrored by the OpenSUSE mirror script for CentOS 7. A followup change will remove the OpenSUSE mirroring entirely as this was the last thing it was used for. Change-Id: I484651b0845eaab933e98106684e0a2a6215b3d7
This commit is contained in:
parent
cf73eda44f
commit
6df6c6507f
@ -39,7 +39,7 @@ K5START="k5start -t -f /etc/centos.keytab service/centos-mirror -- $TIMEOUT"
|
|||||||
|
|
||||||
if [[ ${DRY_RUN:-0} -ne 1 ]]; then
|
if [[ ${DRY_RUN:-0} -ne 1 ]]; then
|
||||||
# Cleanup old repos
|
# Cleanup old repos
|
||||||
for REPO in 8 altarch ; do
|
for REPO in 7 ; do
|
||||||
if [ -d $BASE/$REPO/ ]; then
|
if [ -d $BASE/$REPO/ ]; then
|
||||||
$K5START rm -rf $BASE/$REPO/
|
$K5START rm -rf $BASE/$REPO/
|
||||||
fi
|
fi
|
||||||
@ -69,42 +69,6 @@ $K5START ${RSYNC} \
|
|||||||
--exclude=".*" \
|
--exclude=".*" \
|
||||||
$MIRROR $BASE/8-stream
|
$MIRROR $BASE/8-stream
|
||||||
|
|
||||||
#
|
|
||||||
# -- Centos 7 --
|
|
||||||
#
|
|
||||||
|
|
||||||
MIRROR="rsync://msync.centos.org/centos-full/centos/"
|
|
||||||
REPOS="7"
|
|
||||||
|
|
||||||
for REPO in $REPOS; do
|
|
||||||
if ! [ -f $BASE/$REPO ]; then
|
|
||||||
$K5START mkdir -p $BASE/$REPO
|
|
||||||
fi
|
|
||||||
|
|
||||||
MIRROR_PATH=$MIRROR/$REPO/
|
|
||||||
EXTRA_OPTS="--links" # -l
|
|
||||||
|
|
||||||
date --iso-8601=ns
|
|
||||||
echo "Running rsync..."
|
|
||||||
$K5START ${RSYNC} \
|
|
||||||
--delete \
|
|
||||||
--delete-excluded \
|
|
||||||
--exclude="atomic" \
|
|
||||||
--exclude="centosplus" \
|
|
||||||
--exclude="experimental" \
|
|
||||||
--exclude="fasttrack" \
|
|
||||||
--exclude="isos" \
|
|
||||||
--exclude="images/" \
|
|
||||||
--exclude="isolinux/" \
|
|
||||||
--exclude="paas" \
|
|
||||||
--exclude="*/drpms" \
|
|
||||||
--exclude="*.i686.rpm" \
|
|
||||||
$EXTRA_OPTS \
|
|
||||||
$MIRROR_PATH $BASE/$REPO/
|
|
||||||
|
|
||||||
# TODO(pabelanger): Validate rsync process
|
|
||||||
done
|
|
||||||
|
|
||||||
if [[ ${DRY_RUN:-0} -ne 1 ]]; then
|
if [[ ${DRY_RUN:-0} -ne 1 ]]; then
|
||||||
date --iso-8601=ns | $K5START tee $BASE/timestamp.txt
|
date --iso-8601=ns | $K5START tee $BASE/timestamp.txt
|
||||||
echo "rsync completed successfully, running vos release."
|
echo "rsync completed successfully, running vos release."
|
||||||
|
@ -29,10 +29,7 @@ fi
|
|||||||
BASE="/afs/.openstack.org/mirror/opensuse"
|
BASE="/afs/.openstack.org/mirror/opensuse"
|
||||||
MIRROR="rsync://mirror.clarkson.edu/opensuse/opensuse"
|
MIRROR="rsync://mirror.clarkson.edu/opensuse/opensuse"
|
||||||
OBS_MIRROR="rsync://provo-mirror.opensuse.org/opensuse/repositories"
|
OBS_MIRROR="rsync://provo-mirror.opensuse.org/opensuse/repositories"
|
||||||
OBS_REPOS=(
|
OBS_REPOS=()
|
||||||
# NOTE(yoctozepto): kolla uses the following for hacluster
|
|
||||||
'network:/ha-clustering:/Stable/CentOS_CentOS-7'
|
|
||||||
)
|
|
||||||
K5START="k5start -t -f /etc/opensuse.keytab service/opensuse-mirror -- $TIMEOUT"
|
K5START="k5start -t -f /etc/opensuse.keytab service/opensuse-mirror -- $TIMEOUT"
|
||||||
|
|
||||||
# NOTE(hwoarang): Ensure old distros are not mirrored aymore
|
# NOTE(hwoarang): Ensure old distros are not mirrored aymore
|
||||||
@ -41,6 +38,7 @@ for REPO in distribution/leap/15.1 update/leap/15.1 distribution/leap/15.2 \
|
|||||||
repositories/Cloud:/OpenStack:/Master/openSUSE_Leap_15.1 \
|
repositories/Cloud:/OpenStack:/Master/openSUSE_Leap_15.1 \
|
||||||
repositories/Cloud:/OpenStack:/Ussuri/openSUSE_Leap_15.2 \
|
repositories/Cloud:/OpenStack:/Ussuri/openSUSE_Leap_15.2 \
|
||||||
repositories/Cloud:/OpenStack:/Master/openSUSE_Leap_15.2 \
|
repositories/Cloud:/OpenStack:/Master/openSUSE_Leap_15.2 \
|
||||||
|
network:/ha-clustering:/Stable/CentOS_CentOS-7 \
|
||||||
update/tumbleweed tumbleweed ; do
|
update/tumbleweed tumbleweed ; do
|
||||||
if [ -d $BASE/$REPO ]; then
|
if [ -d $BASE/$REPO ]; then
|
||||||
$K5START rm -rf $BASE/$REPO
|
$K5START rm -rf $BASE/$REPO
|
||||||
|
Loading…
Reference in New Issue
Block a user