I'm trying to set up a custom task to update my rails app and stop the
web server so I can do manual migrates.  I like to do them by hand in
production so I can take a final backup before migrating.

I have written a task like this:
task :deploy_and_stop, :roles => :web do
  deploy:update
  post_update_scripts
  stop_web_server
end

The post_update_scripts and stop_web_server tasks work fine.  However,
calling deploy:update seems to not do anything at all.  It is parsing
the line and running without error, but it just doesn't seem to check
out the code.  This seems to be the case with any deploy:* task I call
in there.

Am I missing something?


--~--~---------~--~----~------------~-------~--~----~
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