Having fought this for a couple of days last week I may be able to shed light on the situation.
The problem is that the Subversion 'chat script' (handle_data) is not working because when you use 'svn+ssh' on the later versions of Capistrano it automatically goes into 'non-interactive' mode due to the lack of a pty - no prompts = no chat script = no host key verification. If you use 'svn+ssh' on probably any version of Linux you will need to switch ptys back on with: default_run_options[:pty] = true in your deploy.rb even if you use public keys, unless you do the SSH host verification manually up front (or turn it off). NeilW On 1 May, 06:54, Jamis Buck <[EMAIL PROTECTED]> wrote: > I'm not 100% sure what the "host key verification failed" error is > about, but I suspect it is Subversion's SSH connection complaining > that it cannot verify the host key of the host it is trying to connect > to. Regarding passwordless authentication, you'll need to make sure > that you have your keys set up such that you can ssh from the EC2 > instance to your "foo.bar.com" server (the one hosting your svn > repository). --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
