mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 22:11:01 +08:00
27 lines
1.0 KiB
Bash
27 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
## Set up variables we use
|
|
RSYNC='/usr/bin/rsync'
|
|
RS_OPT="-avSHP --numeric-ids"
|
|
RS_DEADLY="--delete --delete-excluded --delete-delay --delay-updates"
|
|
CENT_EXCLUDES="--exclude=iso --exclude=kickstart --exclude=images --exclude=debug --exclude=source"
|
|
|
|
SERVER=centos-master01.rdu3.fedoraproject.org
|
|
|
|
## Mirror CentOS-10-Stream
|
|
|
|
RSYNC_DESTDIR=/mnt/fedora/app/fi-repo/centos/centos-10/
|
|
RSYNC_SNAPDIR=/mnt/fedora/app/fi-repo/centos/centos-10-snapshot/
|
|
RSYNC_MOD="CentOS-Stream-Ref/10-stream/"
|
|
|
|
mkdir -p ${RSYNC_DESTDIR} ${RSYNC_SNAPDIR}
|
|
|
|
${RSYNC} ${RS_OPT} ${RS_DEADLY} ${CENT_EXCLUDES} ${SERVER}::${RSYNC_MOD} ${RSYNC_DESTDIR}
|
|
|
|
# Duplicate the sync directory. Before CentOS 10 starts getting RHEL 10.1
|
|
# changes, we need to comment this out to have a snapshot of CentOS 10 that
|
|
# resembles RHEL 10.0 for the epel10.0-build tag to use temporarily until the
|
|
# actual RHEL 10.0 is released.
|
|
# https://pagure.io/fedora-infrastructure/issue/12394
|
|
#${RSYNC} ${RS_OPT} ${RS_DEADLY} --link-dest=${RSYNC_DESTDIR} ${RSYNC_DESTDIR} ${RSYNC_SNAPDIR}
|