> > Can anyone suggest how I can stop Capistrano from trying to cache my > password?
Use SSH keys. There's basically no good reason not to do so in 2011, and deploying on servers which still use passwords is just not smart (with the immense power of password cracking tools) Future versions of Capistrano will force the use of SSH keys, because we have a responsibility to the network to keep our machines secure. For a decent primer on SSH keys, please see the links on the https://github.com/capistrano/capistrano/wiki under "Useful Background Knowledge" On a more balanced view, having a deploy where you have to sit, and enter a password makes for unhappy deployers, maintainers (responding to prompts in a smart way hurts in concurrent code) so using ssh keys will be better for everyone. -- * You received this message because you are subscribed to the Google Groups "Capistrano" group. * To post to this group, send email to [email protected] * To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/capistrano?hl=en
