I'm trying to use access control lists to grant access to a directory to specific users without needing complex group memberships.
I checked I had a suitable kernel, installed the software and modified my fstab file, and it looks like they should be working... this is the info mount returns about the drive...
Code:
/dev/hda1 on / type ext3 (rw,acl,errors=remount-ro)
I ran the following to set the permissions (and defaults), but the user wibble can't access.
Code:
setfacl -R -d -m user:wibble:rx photos
setfacl -R -m user:wibble:rx photos
Any thoughts anybody?