commit: 33ce8acb5722cf2f91e81ed918e46cb4f0ef8ffe
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 31 00:41:01 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 01:56:43 2021 +0000
URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=33ce8acb
tools: Use same set of RSYNC_OPTS
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
tools/catalyst-auto-alpha.conf | 3 +++
tools/catalyst-auto-arm.conf | 3 +++
tools/catalyst-auto-arm64.conf | 3 +++
tools/catalyst-auto-hppa.conf | 3 +++
tools/catalyst-auto-ia64.conf | 3 +++
tools/catalyst-auto-ppc.conf | 3 +++
tools/catalyst-auto-ppc64le.conf | 3 +++
tools/catalyst-auto-qemu-arm.conf | 3 +++
tools/catalyst-auto-qemu-riscv.conf | 3 +++
tools/catalyst-auto-s390.conf | 3 +++
tools/catalyst-auto-s390x.conf | 3 +++
tools/catalyst-auto-sparc64.conf | 3 +++
12 files changed, 36 insertions(+)
diff --git a/tools/catalyst-auto-alpha.conf b/tools/catalyst-auto-alpha.conf
index 381171b5..6a233900 100644
--- a/tools/catalyst-auto-alpha.conf
+++ b/tools/catalyst-auto-alpha.conf
@@ -44,6 +44,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-arm.conf b/tools/catalyst-auto-arm.conf
index eaae0399..5c78ab99 100644
--- a/tools/catalyst-auto-arm.conf
+++ b/tools/catalyst-auto-arm.conf
@@ -66,6 +66,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
else
diff --git a/tools/catalyst-auto-arm64.conf b/tools/catalyst-auto-arm64.conf
index 1bd94ae9..f1ce7ab1 100644
--- a/tools/catalyst-auto-arm64.conf
+++ b/tools/catalyst-auto-arm64.conf
@@ -38,6 +38,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-hppa.conf b/tools/catalyst-auto-hppa.conf
index 3b93e4ec..6ba59c81 100644
--- a/tools/catalyst-auto-hppa.conf
+++ b/tools/catalyst-auto-hppa.conf
@@ -44,6 +44,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-ia64.conf b/tools/catalyst-auto-ia64.conf
index 2d87a837..1d123d2a 100644
--- a/tools/catalyst-auto-ia64.conf
+++ b/tools/catalyst-auto-ia64.conf
@@ -37,6 +37,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf
index 615c3f55..61354d22 100644
--- a/tools/catalyst-auto-ppc.conf
+++ b/tools/catalyst-auto-ppc.conf
@@ -43,6 +43,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-ppc64le.conf b/tools/catalyst-auto-ppc64le.conf
index e2394932..a8e438e1 100644
--- a/tools/catalyst-auto-ppc64le.conf
+++ b/tools/catalyst-auto-ppc64le.conf
@@ -44,6 +44,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-qemu-arm.conf
b/tools/catalyst-auto-qemu-arm.conf
index e6075ec3..68f583ef 100644
--- a/tools/catalyst-auto-qemu-arm.conf
+++ b/tools/catalyst-auto-qemu-arm.conf
@@ -67,6 +67,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
else
diff --git a/tools/catalyst-auto-qemu-riscv.conf
b/tools/catalyst-auto-qemu-riscv.conf
index dced8eec..035c0ee7 100644
--- a/tools/catalyst-auto-qemu-riscv.conf
+++ b/tools/catalyst-auto-qemu-riscv.conf
@@ -54,6 +54,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
fi
diff --git a/tools/catalyst-auto-s390.conf b/tools/catalyst-auto-s390.conf
index d8a39286..e442414c 100644
--- a/tools/catalyst-auto-s390.conf
+++ b/tools/catalyst-auto-s390.conf
@@ -37,6 +37,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-s390x.conf b/tools/catalyst-auto-s390x.conf
index e8a509d5..980b721d 100644
--- a/tools/catalyst-auto-s390x.conf
+++ b/tools/catalyst-auto-s390x.conf
@@ -37,6 +37,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}
diff --git a/tools/catalyst-auto-sparc64.conf b/tools/catalyst-auto-sparc64.conf
index 9cfbdcd5..1b730c54 100644
--- a/tools/catalyst-auto-sparc64.conf
+++ b/tools/catalyst-auto-sparc64.conf
@@ -39,6 +39,9 @@ upload() {
)
local RSYNC_OPTS=(
-e "${SSH_CMD[*]}"
+ --archive
+ --omit-dir-times
+ --delay-updates
)
rsync "${RSYNC_OPTS[@]}" "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
}