From 0549a7550b7b9eef1393a68b71339108f219c6a0 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 6 Aug 2026 15:41:48 -0500 Subject: [PATCH] Revert use of -T /tmp in initialize-build-host due to disk full troubles On some hosts, /tmp is not large enough to hold the transfer. This was introduced in commit 8b51092b10f5d178e2f4a1bd4312ec163eb4588e with the comment: Try to avoid temporary rsync files from other hosts while copying. Ticket: ENT-14400 Changelog: none --- ci/initialize-build-host.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/initialize-build-host.sh b/ci/initialize-build-host.sh index eefbbc937..65c3e53bf 100644 --- a/ci/initialize-build-host.sh +++ b/ci/initialize-build-host.sh @@ -98,7 +98,7 @@ command -v /sbin/ifconfig 2>/dev/null && /sbin/ifconfig -a || true command -v /sbin/ip 2>/dev/null && /sbin/ip addr || true -RSYNC="rsync --delete -zrlpt -T /tmp" +RSYNC="rsync --delete -zrlpt" RSH="ssh -o BatchMode=yes" # Support launching scripts that were initially launched under bash.