summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/Globals.py
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-10-20 20:43:50 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-10-20 20:43:50 +0000
commit799dad58cef1646126a65e5df343a3d15f412539 (patch)
tree9887d242ed969c1647ade8c2bee27a804f75e32d /rdiff-backup/rdiff_backup/Globals.py
parent974fd3b1cbc302baa312b741cc06deec4c4e5481 (diff)
downloadrdiff-backup-799dad58cef1646126a65e5df343a3d15f412539.tar.gz
Fix for bug #14799 - autodetect whether destination handles highbit perms
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r1-0@640 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/Globals.py')
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index 710d79d..9a34238 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -216,6 +216,10 @@ fsync_directories = None
# If set, exit with error instead of dropping ACLs or ACL entries.
never_drop_acls = None
+# Apply this mask to permissions before chmoding. (Set to 0777 to
+# prevent highbit permissions on systems which don't support them.)
+permission_mask = 07777
+
def get(name):
"""Return the value of something in this module"""