>>>>> Murali Vadivelu <[EMAIL PROTECTED]> >>>>> wrote the following on Mon, 31 Oct 2005 02:46:48 +0000 > > Does it use the Mac OS X specific command /usr/sbin/fsaclctl command? > If that is the case it would fail as the OS probably stores the ACL > enabled status at the root of the volume.
Oh, no it "manually" tries to read ACL information from that directory
with pylibacl. Here is the relevant code:
try: posix1e.ACL(file=rp.path)
except IOError:
log.Log("ACLs not supported by filesystem at %s" % (rp.path,), 4)
self.acls = 0
else: self.acls = 1
since you got the error "ACLs not supported by filesystem at
/Users/muralikv/Desktop", then rdiff_backup tried to run
posix1e.ACL(file="/Users/muralikv/Desktop")
and got an IOError.
--
Ben Escoto
pgpKFrzzAmHoy.pgp
Description: PGP signature
_______________________________________________ rdiff-backup-users mailing list at [email protected] http://lists.nongnu.org/mailman/listinfo/rdiff-backup-users Wiki URL: http://rdiff-backup.solutionsfirst.com.au/index.php/RdiffBackupWiki
