Hi, only what I did on windows is
Copy pageant.exe, plink.exe to windows/system32 dir
Subversion server config file
[tunnels]
svn = plink
Run pageant.exe end add ssh key
Test svn check out on command line
svn checkout svn+ssh://192.168.1.102/svn/myapp/trunk
In deploy.rb set:
set :user, "deploy"
set :password, "password"
set :repository, "svn+ssh://[EMAIL PROTECTED]/var/svn/lovcicen/
tag"
ssh_options[:keys] = File.join("config", ssh_key_name)
I also added to cap start pageant
before "deploy:cold", "deploy:pageant"
desc "This task run Pageant.exe for windows. needed for storing ssh
key"
deploy.task :pageant do
path = File.join("config","deploy_key.ppk")
system("START \"Pageant.exe - SSH\" cmd.exe /MIN /c pageant.exe
#{path}")
puts "loaded pageant.exe for windows svn+ssh"
end
--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---