On Oct 15, 9:41 pm, Brian Hardy <[EMAIL PROTECTED]> wrote: > On Oct 15, 7:27 pm, Nathan Youngman <[EMAIL PROTECTED]> wrote: > > > Thanks for all your work on Capistrano 2.1. I'm new to cap, and trying > > to learn how to set things like a different scm user. > > This is possible via: > > set :svn_username, "svnuser" > > in your config/deploy.rb (assuming you are using Subversion). Of > course, I'm currently experiencing issues with this very thing, so > take that with a grain of salt.
I took my own advice and read the source code to discover the solution to my own problem, and hopefully yours as well. The new name for the variable you want is scm_username, so: set :scm_username, "whatever" There are also scm_password, scm_prefer_prompt, scm_auth_cache, and scm_verbose. See this file's last few lines for more info: http://svn.rubyonrails.org/rails/tags/capistrano_2-1-0/lib/capistrano/recipes/deploy/scm/subversion.rb --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
