From c18bb4e0e1f57ede89eac4cb961df35b67b3612e Mon Sep 17 00:00:00 2001 From: Einhard Leichtfuß Date: Sat, 13 Jun 2026 16:19:12 +0200 Subject: Work around relative link dest bug Don't use a relative link dest. Bug: https://github.com/RsyncProject/rsync/issues/928 (bug is fixed upstream, but present in Debian's 3.4.1+ds1-5+deb13u3) --- local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local b/local index 37b2574..b13ee9d 100644 --- a/local +++ b/local @@ -110,7 +110,7 @@ function transfer_incremental_backup # Note: Use --link-dest instead of making the old backup part of the target # directory, since src/old_date may have changed due to in-place # modifications. - "$RSYNC" "${rsync_args[@]}" --link-dest='..' \ + "$RSYNC" "${rsync_args[@]}" --link-dest="$dest" \ "${src}/${src_mirror_reldir}"/{"$old_date","$new_date"} \ "${dest}/work" \ || return $RET_ERROR -- cgit v1.2.3