-
-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
item.source is dual-use #2343
Comments
ThomasWaldmann
added a commit
to ThomasWaldmann/borg
that referenced
this issue
Mar 26, 2017
ThomasWaldmann
added a commit
to ThomasWaldmann/borg
that referenced
this issue
Mar 26, 2017
a symlink has a 'source' attribute, so it was confused with a hardlink slave here. see also issue borgbackup#2343. also, a symlink's fs size is defined as the length of the target path.
ThomasWaldmann
added a commit
to ThomasWaldmann/borg
that referenced
this issue
Mar 26, 2017
a symlink has a 'source' attribute, so it was confused with a hardlink slave here. see also issue borgbackup#2343. also, a symlink's fs size is defined as the length of the target path.
ThomasWaldmann
added a commit
to ThomasWaldmann/borg
that referenced
this issue
Mar 28, 2017
- nlink > 1 for dirs does not mean hardlinking (at least not everywhere, wondering how apple does it) - we can not archive hardlinked symlinks due to item.source dual-use, see issue borgbackup#2343. likely nobody uses this anyway.
ThomasWaldmann
added a commit
to ThomasWaldmann/borg
that referenced
this issue
Apr 1, 2017
- nlink > 1 for dirs does not mean hardlinking (at least not everywhere, wondering how apple does it) - we can not archive hardlinked symlinks due to item.source dual-use, see issue borgbackup#2343. likely nobody uses this anyway.
ThomasWaldmann
added a commit
to ThomasWaldmann/borg
that referenced
this issue
Apr 5, 2017
- nlink > 1 for dirs does not mean hardlinking (at least not everywhere, wondering how apple does it) - we can not archive hardlinked symlinks due to item.source dual-use, see issue borgbackup#2343. likely nobody uses this anyway.
#6663 resolved this.
|
this is solved in borg2 branch, in 2.0.0a2 release. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
item.source is the symlink target for symlink items.
item.source is the hardlink master for hardlink slaves.
thus, we have a conflict for symlink items that are also hardlink slaves.
this should be cleaned up at a breaking time, hardlink slaves shall always use item.master to refer to the hardlink master.
see also: #2325
The text was updated successfully, but these errors were encountered: