I have two writeable directories branch1 and branch2 tied together with AUFS on Debian 8 to the mount point union.
Mount options: br=branch1=rw:branch2=rw
branch1 and branch2 each contain a subdirectory dir with permissions 700. When I change the permissions with chmod 755 union/dir, only the first directory branch1/dir is altered, branch2/dir ramains as it is.
Problem: Group and other users can't access union/dir even after setting chmod 755 because branch2/dir is still chmod 700.
Is there a way to make AUFS apply changed permissions to all directories in the union or is it always limited to the topmost one?