summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/Globals.py
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2003-07-18 21:31:14 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2003-07-18 21:31:14 +0000
commit3f6645f4282082c2e140b52780a9a500c8212f82 (patch)
treed19611f85b77d4775ed860c0db9850d7d78f0743 /rdiff-backup/rdiff_backup/Globals.py
parente9a90e94befd8aaf5185be59d13d946d8b121936 (diff)
downloadrdiff-backup-3f6645f4282082c2e140b52780a9a500c8212f82.tar.gz
Added Daniel Hazelbaker's resource fork code, plus detection to fs_abilities and a new unittest file.
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@345 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/Globals.py')
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index 78176f2..018d016 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -71,16 +71,24 @@ read_eas = None
# If true, preserve the extended attributes on the mirror directory
# when backing up, or write them to the restore directory. This
-# implies read_eas.
+# requires read_eas.
write_eas = None
# If true, save access control lists when backup up.
read_acls = None
# If true, write access control list information to the destination
-# when backing up or restoring. Implies read_acls.
+# when backing up or restoring. Requires read_acls.
write_acls = None
+# If true, look for and save resource fork information when backing
+# up.
+read_resource_forks = None
+
+# If true, write resource fork information to destination when backing
+# up or restoring. Requires read_resource_forks.
+write_resource_forks = None
+
# This will be set as soon as the LocalConnection class loads
local_connection = None