I am using capifony (it is capistrano for symfony) to deply.
I have to do some work after deployment such as changing access rights for some directories.
chmod 0777 test
For now I am doing this by manual operation.
Could I include this in my capifony deploy.rb?
Im not sure about capifony but if you put something like
after 'deploy', 'sometask'
in your capistranodeploy.rb
file it is ran after deploy.Here is the list of all the Capistrano deployment tasks. You can do a
before
orafter
for any of them.Looks like this answer might help you.