First time I've tried to deploy an application via SVN and Capistrano and not having much luck. I found a thread on the forum for setting up the id_dsa.pub file, and successfully did that, but I'm still getting the same error. Here's some of the output (I've changed some of the names for security reasons).
homebox:~/code/ruby/helloworld michael$ cap deploy
* executing `deploy'
* executing `deploy:update'
** transaction: start
* executing `deploy:update_code'
* executing "svn checkout -q -r4 svn+ssh://username@www.myname.com/home/username/svn/helloworld/trunk /home/username/apps/helloworld/releases/20071005222717 && (echo 4 > /home/username/apps/helloworld/releases/20071005222717/REVISION)"
servers: ["www.myname.com"]
Password:
[www.myname.com] executing command
** [out] ssh_exchange_identification: Connection closed by remote host
** [out] svn: Connection closed unexpectedly
command finished
* executing `deploy:finalize_update'
* executing "chmod -R g+w /home/username/apps/helloworld/releases/20071005222717"
servers: ["www.myname.com"]
[www.myname.com] executing command
** [out :: www.myname.com] chmod: cannot access `/home/username/apps/helloworld/releases/20071005222717': No such file or directory
I cut and pasted the deploy.rb and changed the application, domain and user to the following
set :application, "helloworld"
set :domain, "www.myname.com"
set :user, "username"
any help would be appreciated