summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-08-18 04:52:13 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-08-18 04:52:13 +0000
commit1e05aff1505a3da476544b772d6bb3ddbd3e8aa8 (patch)
tree52cf301386d835bb1ef6a27c7f7e8cbd585f87a0
parent90cd8e3c4f966dcf705f24cbb16e85a7a4d6d090 (diff)
downloadrdiff-backup-1e05aff1505a3da476544b772d6bb3ddbd3e8aa8.tar.gz
Default to not fsyncing directories
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@623 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/CHANGELOG3
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index ab7ba40..b721602 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -12,6 +12,9 @@ Librsync signature blocksize now based on square root of file length.
rdiff-backup now writes its PID to current_mirror marker (suggested by
Kevin Spicer).
+fsync_directories defaults to None, to avoid errors in testing
+(suggestion by Charles Duffy).
+
New in v1.0.0 (2005/08/14)
--------------------------
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index f14058f..dd5dc9b 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -210,7 +210,7 @@ compare_inode = 1
# If set, directories can be fsync'd just like normal files, to
# guarantee that any changes have been committed to disk.
-fsync_directories = 1
+fsync_directories = None
# If set, exit with error instead of dropping ACLs or ACL entries.
never_drop_acls = None