I'm testing Acrosync for backing up several machines to a NAS, and I was using the snapshot feature. On the NAS the user shared folders are setup with different uid, but a common gid. When Acrosync creates the snapshot folders it assigns permissions of:
drwxr--r--
Since gid is lacking "x" permission the directory cannot be indexed by anyone other than the owner, so it shows up blank to anyone else. I need a way to get the gid permissions to be "r-x" instead of "r--", such that it is one of the following:
drwxr-x--- (uid read-write, gid read-only)
drwxr-xr-x (incl other)
Is there a way to do this?
Comments