What exactly are all the parts of the deploy:cold task?
Are they just deploy:update and deploy:start?


On Nov 27, 8:45 am, Jamis Buck <[EMAIL PROTECTED]> wrote:
> If you are using the deploy:cold task, if expects to run migrations
> and thus needs a db role. What you want is to not define a db role at
> all, and then run parts of the deploy:cold task that you want,
> manually, e.g.:
>
>    cap deploy:update deploy:start
>
> You could, of course, override the deploy:cold task to suit your own
> needs:
>
>    deploy.task :cold do
>      deploy.update
>      deploy.start
>    end
>
> - Jamis
>
--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---

Reply via email to