diff --git a/playbooks/roles/mirror-update/files/centos-mirror-update b/playbooks/roles/mirror-update/files/centos-mirror-update index 1022b907f7..75614c5627 100755 --- a/playbooks/roles/mirror-update/files/centos-mirror-update +++ b/playbooks/roles/mirror-update/files/centos-mirror-update @@ -38,7 +38,7 @@ if ! [ -f $BASE/8 ]; then fi date --iso-8601=ns echo "Running Centos 8 rsync..." -$K5START rsync -rtDvz \ +$K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="isos" \ @@ -75,7 +75,7 @@ for REPO in $REPOS; do date --iso-8601=ns echo "Running rsync..." - $K5START rsync -rtDvz \ + $K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="atomic" \ diff --git a/playbooks/roles/mirror-update/files/epel-mirror-update b/playbooks/roles/mirror-update/files/epel-mirror-update index 3b808a6e86..7fab12056c 100755 --- a/playbooks/roles/mirror-update/files/epel-mirror-update +++ b/playbooks/roles/mirror-update/files/epel-mirror-update @@ -42,7 +42,7 @@ fi date --iso-8601=ns echo "Running rsync..." -$K5START rsync -rlptDvz \ +$K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="SRPMS" \ @@ -72,7 +72,7 @@ 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 -rlptDvz --no-perms \ +$K5START rsync -rlvz --no-perms \ --delete \ --delete-excluded \ --exclude="Everything/SRPMS" \ diff --git a/playbooks/roles/mirror-update/files/fedora-mirror-update b/playbooks/roles/mirror-update/files/fedora-mirror-update index c1dd56a6d5..2c7b570c2c 100755 --- a/playbooks/roles/mirror-update/files/fedora-mirror-update +++ b/playbooks/roles/mirror-update/files/fedora-mirror-update @@ -52,7 +52,7 @@ for REPO in releases/30 releases/31; do fi echo_ts "Running rsync for $REPO..." - $K5START rsync -rltDiz \ + $K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="Cloud/x86_64/images/*.box" \ @@ -77,7 +77,7 @@ for REPO in updates/30 updates/31; do fi echo_ts "Running rsync for $REPO..." - $K5START rsync -rltDiz \ + $K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="aarch64/" \ @@ -98,7 +98,7 @@ if ! [ -f $BASE/atomic ]; then fi echo_ts "Running rsync atomic..." -$K5START rsync -rltDiz \ +$K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="testing/" \ diff --git a/playbooks/roles/mirror-update/files/opensuse-mirror-update b/playbooks/roles/mirror-update/files/opensuse-mirror-update index 9a1ae277fc..a82ec17ef2 100755 --- a/playbooks/roles/mirror-update/files/opensuse-mirror-update +++ b/playbooks/roles/mirror-update/files/opensuse-mirror-update @@ -62,7 +62,7 @@ for DISTVER in 15.1; do date --iso-8601=ns echo "Running rsync distribution $DISTVER ..." - $K5START rsync -rlptDvz \ + $K5START rsync -rlvz \ --delete --stats \ --delete-excluded \ --exclude="iso" \ @@ -76,7 +76,7 @@ for DISTVER in 15.1; do date --iso-8601=ns echo "Running rsync updates $DISTVER ..." - $K5START rsync -rlptDvz \ + $K5START rsync -rlvz \ --delete --stats \ --delete-excluded \ --exclude="src/" \ @@ -92,7 +92,7 @@ for obs_repo in ${OBS_REPOS[@]}; do $K5START mkdir -p $BASE/$REPO fi echo "Running rsync ${obs_repo} ..." - $K5START rsync -rlptDvz \ + $K5START rsync -rlvz \ --delete --stats \ --delete-excluded \ --exclude="src/" \ @@ -109,7 +109,7 @@ fi date --iso-8601=ns echo "Running rsync distribution $REPO ..." # TW is large and can have failures, be more resilient -$K5START rsync -rlptDvz \ +$K5START rsync -rlvz \ --delete --stats \ --delete-excluded \ --exclude="i586" \ @@ -123,7 +123,7 @@ fi date --iso-8601=ns echo "Running rsync distribution $REPO ..." -$K5START rsync -rlptDvz \ +$K5START rsync -rlvz \ --timeout=600 \ --delete --stats \ --delete-excluded \ diff --git a/playbooks/roles/mirror-update/files/publish-mirror-logs b/playbooks/roles/mirror-update/files/publish-mirror-logs index d25a1f8ac2..9afa1ed79c 100755 --- a/playbooks/roles/mirror-update/files/publish-mirror-logs +++ b/playbooks/roles/mirror-update/files/publish-mirror-logs @@ -16,7 +16,7 @@ DEST="/afs/.openstack.org/mirror/logs/" K5START="k5start -t -f /etc/logs.keytab service/logs-mirror --" -RSYNC="rsync -avz --no-perms --no-owner --no-group" +RSYNC="rsync -rliz" $K5START $RSYNC /var/log/rsync-mirrors $DEST $K5START $RSYNC /var/log/afs-release $DEST diff --git a/playbooks/roles/mirror-update/files/yum-puppetlabs-mirror-update b/playbooks/roles/mirror-update/files/yum-puppetlabs-mirror-update index 4f6214d7a2..30f5014f30 100755 --- a/playbooks/roles/mirror-update/files/yum-puppetlabs-mirror-update +++ b/playbooks/roles/mirror-update/files/yum-puppetlabs-mirror-update @@ -36,7 +36,7 @@ date --iso-8601=ns echo "Running rsync..." # We don't need cisco-wrlinux arch in OpenStack Infra. -$K5START rsync -rlptDvz \ +$K5START rsync -rlvz \ --delete \ --delete-excluded \ --exclude="cisco-wrlinux" \