summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-10-25 06:44:45 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-10-25 06:44:45 +0000
commitb82f43dafe1b785e8e13507ff50c47762748f362 (patch)
tree6f669f6815a8069b80e186509869bf8fe3bd953b
parent2813afdc4608d88b31f841f1526b2b5ab7fa7f8a (diff)
downloadrdiff-backup-b82f43dafe1b785e8e13507ff50c47762748f362.tar.gz
Berryman's hard linking AFS patch
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r1-0@658 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/CHANGELOG2
-rw-r--r--rdiff-backup/rdiff_backup/fs_abilities.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index 63fd5d3..476c155 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -3,6 +3,8 @@ New in v1.0.3 (????/??/??)
Applied Alec Berryman's patch to update the no-compression regexp.
+Alec Berryman's fs_abilities patch is supposed to help with AFS.
+
New in v1.0.2 (2005/10/24)
--------------------------
diff --git a/rdiff-backup/rdiff_backup/fs_abilities.py b/rdiff-backup/rdiff_backup/fs_abilities.py
index e2285e7..3248b19 100644
--- a/rdiff-backup/rdiff_backup/fs_abilities.py
+++ b/rdiff-backup/rdiff_backup/fs_abilities.py
@@ -200,7 +200,9 @@ rdiff-backup-data/chars_to_quote.
def set_hardlinks(self, testdir):
"""Set self.hardlinks to true iff hard linked files can be made"""
hl_source = testdir.append("hardlinked_file1")
- hl_dest = testdir.append("hardlinked_file2")
+ hl_dir = testdir.append("hl")
+ hl_dir.mkdir()
+ hl_dest = hl_dir.append("hardlinked_file2")
hl_source.touch()
try:
hl_dest.hardlink(hl_source.path)