I have a shared folder that is used in our LAN development environment that needs to always have rwx permissions for everyone. When Jenkins builds our application however it copies over files to be available and doesn't give guests the ability to write to the files.
So under this directory for any new sub directory or file in a sub directory it basically has to do a chmod 777 to it.
I tried sudo setfacl -Rm g:users:rwX,d:g:users:rwX index/
which gave the parent directory the permissions of drwxrwxrwx+, and all of the sub directories and files have the + but they kept their original permissions.
How do I always make everything in this folder 777?