Hi, I'm trying to deploy my application using Capistrano and using Git as the scm. The 'problem' I've found is that the passwords(for the remote server and the git repository) are asked a lot times, about six times for the remote server and two for the server the git repository is located. It's the first time I use Capistrano 2.x and I hadn't this problem with the older version, as it just asked one time for the sshd server an another one for the svn realm repository. Is this the usual behaviour? Besides that, the project seems to be deployed correctly...
This is the recipe I'm using: ### set :application, "jornadas-uem" set :repository, "[EMAIL PROTECTED]:/www/git/jornadas-uem.git" set :port, 23 set :scm, :git set :deploy_via, :remote_cache set :user, "deployer" set :deploy_to, "/var/www/jornadas-uem" set :use_sudo, false set :scm_verbose, true role :app, "remote_host" ### Regards --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
