Not sure about ACL permissions
- by Darko Miletic
I'm writing up something about ACL usage on CentOS but since I still do not have a box ready I would like to ask something.
Let us assume we have a folder /var/www/test
If I do this in terms of permissions:
/bin/chown -R root:root /var/www/test/
/bin/chmod -R u=rwx,go= /var/www/test/
/usr/bin/setfacl -R -m u:apache:rwx /var/www/test/
Will user apache be able to change owner of folder test or of any particular file within that folder?
If answer is yes shall I than use group instead of user?