How to allow rwx access to a specific group with ACLs

aclpermissions

How do I grant read, write and execute to specific group?

What I did:

adduser test
addgroup developer
setfacl -m g:developer:rwx /opt/spago41/

When I login as test I can't run:

startup.sh in /opt/spago41/

Is the setfacl command not working?

Best Answer

I think you were missing the "recursive" parameter:

setfacl -Rm g:developer:rwx /opt/spago41/

Related Question