chmod -R with NFSv4 ACLs is very broken. Particularly when removing them. You can only remove ACL entries recursively if they are present at all levels of the path. If they're not there at any level, chmod will error out as soon as it finds one.So the only way to reliably remove an ACL entry across a set of files is with
find . -exec chmod A-<acl entry> {} \;.
0 comments:
Post a Comment