fork: seed from gokrazy/rsync with receiver-side --partial - #1
Merged
Conversation
…dule to github.com/runpod/rsync Seeds this repo from gokrazy/rsync@main plus our receiver-side --partial implementation (retain "<name>.partial" on interrupt, reuse as the delta basis on the next run so cross-DC transfers resume instead of restarting). The Go module path is rewritten from github.com/gokrazy/rsync to github.com/runpod/rsync (with all internal imports updated) so host can depend on the fork as a real, fetchable module rather than a local path replace. Upstream PR: gokrazy/rsync#69 Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
…les native paths) Co-authored-by: Cursor <cursoragent@cursor.com>
debian:sid and the unpinned fedora image now ship rsync 3.5.0, whose hardened path traversal (RsyncProject/rsync#1050) opens the traversal anchor with O_RDONLY and fails change_dir on the test tmp dirs with "Permission denied (13)", breaking the interop/fsfs/sync suites in the docker legs. The native runner (rsync 3.2.x) and our receiver tests are unaffected. Pin debian:trixie and fedora:42, both on rsync 3.4.1, to keep the interop coverage green. Co-authored-by: Cursor <cursoragent@cursor.com>
daveseddon-runpod
approved these changes
Aug 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is initializing the
rsyncrepo, which is meant to be a fork of https://github.com/gokrazy/rsync.Seeds this repo from gokrazy/rsync@main plus our receiver-side
--partialimplementation (retain ".partial" on interrupt, reuse as the delta basis on the next run so cross-DC transfers resume instead of restarting). The Go module path is rewritten from github.com/gokrazy/rsync to github.com/runpod/rsync (with all internal imports updated) so host can depend on the fork as a real, fetchable module rather than a local path replace.Upstream PR: gokrazy/rsync#69