From 5e09353fe5ce80b724a30db11cb10523d147c6ec Mon Sep 17 00:00:00 2001 From: bescoto Date: Mon, 30 Jun 2003 03:00:18 +0000 Subject: Many changes - added extended attribute support and file system ability detection git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@334 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109 --- rdiff-backup/rdiff_backup/Globals.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'rdiff-backup/rdiff_backup/Globals.py') diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py index 0d83d4c..2f60ab7 100644 --- a/rdiff-backup/rdiff_backup/Globals.py +++ b/rdiff-backup/rdiff_backup/Globals.py @@ -66,6 +66,14 @@ change_mirror_perms = (process_uid != 0) # If true, try to reset the atimes of the source partition. preserve_atime = None +# If true, save the extended attributes when backing up. +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. +write_eas = None + # This will be set as soon as the LocalConnection class loads local_connection = None @@ -112,10 +120,12 @@ rbdir = None # quoting_enabled is true if we should quote certain characters in # filenames on the source side (see FilenameMapping for more -# info). chars_to_quote is a string whose characters should be -# quoted, and quoting_char is the character to quote with. -quoting_enabled = None -chars_to_quote = "A-Z:" +# info). + +# chars_to_quote is a string whose characters should be quoted. It +# should be true if certain characters in filenames on the source side +# should be escaped (see FilenameMapping for more info). +chars_to_quote = None quoting_char = ';' # If true, emit output intended to be easily readable by a -- cgit v1.2.1