From c93796a78737cbd53951c749f5db295e3cee8b0c Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 5 Jan 2024 11:25:13 +0100 Subject: [PATCH] preserve times when rsyncing yum --- theforeman.org/pipelines/lib/packaging.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theforeman.org/pipelines/lib/packaging.groovy b/theforeman.org/pipelines/lib/packaging.groovy index c78cd560..62d985b6 100644 --- a/theforeman.org/pipelines/lib/packaging.groovy +++ b/theforeman.org/pipelines/lib/packaging.groovy @@ -479,7 +479,7 @@ def rsync_yum(user, ssh_key, collection, target, version) { sh """ export RSYNC_RSH="ssh -i ${ssh_key}" - /usr/bin/rsync --checksum --perms --recursive --links --verbose --partial --one-file-system --delete-after ${collection}/${version}/ ${target_path} + /usr/bin/rsync --checksum --times --perms --recursive --links --verbose --partial --one-file-system --delete-after ${collection}/${version}/ ${target_path} """ } }