-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibility to use chmod instead of acl? #2
Comments
Hi @allaire, the reason I chose Chmod is a little more of a sledgehammer approach, although I agree that it is a pain point that I agree the documentation needs improving, perhaps I will work on that first (unless you are offering 😄) |
For some reason, even with ACL installed, and rwx on www-data (running on ubuntu 12.04), Laravel can't write to storage directory on errrors. any ideas? Note that it's not able to write in storage/ when I get an error using |
Do you know what version of https://github.com/capistrano/file-permissions you have? The problem could lie with the sefacl call not being recursive (can you paste the output) |
Here's my lock file
Here's the output the
|
I had to use:
In order to make it works correctly. |
Sorry for the late response. I'll be helping maintain this plugin for the foreseeable future. If any of these issues are still persisting (all of the tickets are quite old), please let me know and I will do what I can to try and help fix things. |
FWIW, I also had to deal with this, in an Ubuntu environment without setfacl (and without the ability to install it). Ended up setting |
The latest version of the gem released should have a flag to set this. I don't think I implemented chmod, I'll look into it, but you should be able to toggle on/off the permission setting. Sent from my iPhone
|
Problem is that acl is combined with POSIX permissions [1] so setting ACL only isn't enough in some case, resulting in :
[1] http://www.vanemery.com/Linux/ACL/POSIX_ACL_on_Linux.html |
Might be a better default for most of the people, since the ACL package is not under ubuntu by default.
At least maybe we should add more docs about it?
The text was updated successfully, but these errors were encountered: