Capistrano task for ensuring specific permissions (including owner and group) on files and folders on deploy
Capistrano task for ensuring specific permissions (including owner and group) on files and folders on deploy.
Add this line to your application’s Gemfile:
gem 'capistrano-simple-permissions'
Then add it to your Capfile
:
require 'capistrano/simple_permissions'
And then:
$ bundle install
Then Either in your server config or general deploy.rb
, you must set the :permissions_folders
variable to an array
of at least one directory; otherwise this gem won’t do anything.
This gem hooks into Capistrano’s deploy process by executing several chmod
and chown
commands after thedeploy:log_revision
portion of Capistrano’s flow. See
the source for more details.
set :permissions_folders, []
chmod
and chown
. A sensible setting to use would beset :permissions_folders, [fetch(:deploy_to)]
in your deploy.rb
set :chmod_folder_permissions, "775"
chmod
will affect
set :chmod_file_permissions, "664"
chmod
will affect
set :chown_owner, ""
chown
. Note that the command isn’t run as root so changing this to anything other""
might cause errors unless your deploy user has the correct permissions.
set :chown_group, "web"
chown
.Bug reports and pull requests are welcome!
The gem is available as open source under the terms of the MIT License.