Re: [capistrano] Re: ec2 deployment spikes CPU to 100% forever

2011-11-07 Thread Lee Hambley
Jim, good point, I didn't even think about that! -- * You received this message because you are subscribed to the Google Groups Capistrano group. * To post to this group, send email to capistrano@googlegroups.com * To unsubscribe from this group, send email to

[capistrano] Re: Sending email with ActionMailer after a deploy

2011-11-07 Thread istrasci
Hmm, it seems that putting an array of 8 email addresses directly into the 'recipients' doesn't work either. So it seems the problem is ActionMailer, not Capistrano; unless some weird behaviour is introduced into ActionMailer simply by being invoked from Capistrano. But I'm betting that's not

[capistrano] Deploy to all servers

2011-11-07 Thread Henry Umansky
I'm using the multistage Capistrano module, does anyone know if there is a shorthand way to deploy to all servers. So for example: $ cap staging deploy $ cap production deploy would be replaced with: $ cap all deploy Is this possible? -- * You received this message because you are

Re: [capistrano] Deploy to all servers

2011-11-07 Thread Rafa GarcĂ­a
Hi Henry, You can chain tasks: $ cap staging deploy production deploy Or create a script to execute these two tasks. Or if the deployments only have differents hosts you can create an stage call all and concatenate staging and production roles. Regards PS: Perhaps there're other