rdiff-backup-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Rdiff-backup-commits] rdiff-backup CHANGELOG rdiff_backup/fs_abilitie..


From: Andrew Ferguson
Subject: [Rdiff-backup-commits] rdiff-backup CHANGELOG rdiff_backup/fs_abilitie...
Date: Thu, 02 Oct 2008 00:29:02 +0000

CVSROOT:        /sources/rdiff-backup
Module name:    rdiff-backup
Changes by:     Andrew Ferguson <owsla> 08/10/02 00:29:02

Modified files:
        .              : CHANGELOG 
        rdiff_backup   : fs_abilities.py 

Log message:
        Add a warning message if extended attributes support is broken by the
        filesystem 

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/CHANGELOG?cvsroot=rdiff-backup&r1=1.306&r2=1.307
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/rdiff_backup/fs_abilities.py?cvsroot=rdiff-backup&r1=1.51&r2=1.52

Patches:
Index: CHANGELOG
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/CHANGELOG,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -b -r1.306 -r1.307
--- CHANGELOG   30 Sep 2008 03:54:42 -0000      1.306
+++ CHANGELOG   2 Oct 2008 00:29:02 -0000       1.307
@@ -1,6 +1,9 @@
 New in v1.2.2 (????/??/??)
 ---------------------------
 
+Add a warning message if extended attributes support is broken by the
+filesystem (such as with older EncFS versions). (Andrew Ferguson)
+
 Improve handling of Windows ACLs by switching to API functions which
 understand inherited ACEs; fixes support for Windows 2000. (Andrew Ferguson)
 

Index: rdiff_backup/fs_abilities.py
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/rdiff_backup/fs_abilities.py,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -b -r1.51 -r1.52
--- rdiff_backup/fs_abilities.py        21 Aug 2008 00:25:36 -0000      1.51
+++ rdiff_backup/fs_abilities.py        2 Oct 2008 00:29:02 -0000       1.52
@@ -366,6 +366,13 @@
                        log.Log("Extended attributes not supported by "
                                        "filesystem at %s" % (rp.path,), 4)
                        self.eas = 0
+               except AssertionError:
+                       log.Log("Extended attributes support is broken on 
filesystem at "
+                                       "%s. Please upgrade the filesystem 
driver, contact the "
+                                       "developers, or use the --no-eas option 
to disable "
+                                       "extended attributes support and 
suppress this message."
+                                       % (rp.path,), 1)
+                       self.eas = 0
                else: self.eas = 1
 
        def set_win_acls(self, dir_rp):




reply via email to

[Prev in Thread] Current Thread [Next in Thread]