mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
parent
848666e7cb
commit
e815d6da8e
3 changed files with 12 additions and 4 deletions
3
CHANGES
3
CHANGES
|
@ -6,7 +6,8 @@ Here you can see the full list of changes between each Attic release.
|
|||
Version 0.15
|
||||
------------
|
||||
|
||||
(feature release, released on X)
|
||||
(bugfix release, released on Apr 15, 2015)
|
||||
- xattr: Be less strict about unknown/unsupported platforms (#239)
|
||||
- Reduce repository listing memory usage (#163).
|
||||
- Fix BrokenPipeError for remote repositories (#233)
|
||||
- Fix incorrect behavior with two character directory names (#265, #268)
|
||||
|
|
|
@ -9,9 +9,9 @@
|
|||
elif platform == 'Darwin':
|
||||
from attic.platform_darwin import acl_get, acl_set, API_VERSION
|
||||
else:
|
||||
API_VERSION = 1
|
||||
API_VERSION = 2
|
||||
|
||||
def acl_get(path, item, numeric_owner=False):
|
||||
def acl_get(path, item, st, numeric_owner=False):
|
||||
pass
|
||||
def acl_set(path, item, numeric_owner=False):
|
||||
pass
|
||||
|
|
|
@ -248,4 +248,11 @@ def setxattr(path, name, value, *, follow_symlinks=True):
|
|||
_check(func(path, EXTATTR_NAMESPACE_USER, name, value, len(value) if value else 0), path)
|
||||
|
||||
else:
|
||||
raise Exception('Unsupported platform: %s' % sys.platform)
|
||||
def listxattr(path, *, follow_symlinks=True):
|
||||
return []
|
||||
|
||||
def getxattr(path, name, *, follow_symlinks=True):
|
||||
pass
|
||||
|
||||
def setxattr(path, name, value, *, follow_symlinks=True):
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue