We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our provider enabled acl for us on their FreeBSD server. Unfortunately the option -R does not seem to exist on FreeBSD:
-R
ommand: ( SYMFONY_ENV=prod /usr/bin/env setfacl -Rm u:vuser:rwx,u:foobar:rwx /usr/local/www/apache24/noexec/foobar/shared/app/logs /usr/local/www/apache24/noexec/foobar/releases/20160210175337/app/cache ) DEBUG [fb0c7ccf] setfacl: illegal option -- R DEBUG [fb0c7ccf] usage: setfacl [-bdhkn] [-a position entries] [-m entries] [-M file] [-x entries] [-X file] [file ...] (Backtrace restricted to imported tasks) cap aborted! SSHKit::Runner::ExecuteError: Exception while executing as [email protected]: Exception while executing as [email protected]: setfacl exit status: 1 setfacl stdout: Nothing written setfacl stderr: setfacl: illegal option -- R usage: setfacl [-bdhkn] [-a position entries] [-m entries] [-M file] [-x entries] [-X file] [file ...]
Any ideas / workarounds? capistrano/symfony#32 @alafon @peterjmit
The text was updated successfully, but these errors were encountered:
@webdevilopers
The obvious solution is to replace
setfacl -R <your_options> <directory>
with
find <directory> -exec setfacl <your_options> {} \;
somewhere here https://github.com/capistrano/file-permissions/blob/master/lib/capistrano/tasks/file-permissions.rake#L45
Sorry, something went wrong.
No branches or pull requests
Our provider enabled acl for us on their FreeBSD server. Unfortunately the option
-R
does not seem to exist on FreeBSD:Any ideas / workarounds?
capistrano/symfony#32 @alafon @peterjmit
The text was updated successfully, but these errors were encountered: