source, target = files, opts.target_directory
target_is_directory = True
- exclude = os.environ.get("PORTAGE_XATTR_EXCLUDE", "security.*")
+ exclude = os.environ.get("PORTAGE_XATTR_EXCLUDE", "security.* system.nfs4_acl")
try:
if target_is_directory:
PORTAGE_GPG_SIGNING_COMMAND="gpg --sign --digest-algo SHA256 --clearsign --yes --default-key \"\${PORTAGE_GPG_KEY}\" --homedir \"\${PORTAGE_GPG_DIR}\" \"\${FILE}\""
# Security labels are special, see bug #461868.
-PORTAGE_XATTR_EXCLUDE="security.*"
+# system.nfs4_acl attributes are irrelevant, see bug #475496.
+PORTAGE_XATTR_EXCLUDE="security.* system.nfs4_acl"
# *****************************
# ** DO NOT EDIT THIS FILE **
if xattr_enabled:
try:
_copyxattr(src_bytes, dest_tmp_bytes,
- exclude=mysettings.get("PORTAGE_XATTR_EXCLUDE", "security.*"))
+ exclude=mysettings.get("PORTAGE_XATTR_EXCLUDE", "security.* system.nfs4_acl"))
except SystemExit:
raise
except: