A subversion repository uses property svn:externals to include files from another repository. Both repositories reside on the same server. Clients use svn+ssh:// to connect to the respositories without having to specify the passphase because gnome-keyring is used.

On the server we want to checkout files, including those specified with svn:externals. That means that on the localhost (=server) the repository is specified with svn+ssh:// (as part of the propset). When checking out files on the server the passphrase needs to be specified for each propset.

The question is: should I solve this problem by using ssh-keysign or can I use NoHostAuthenticationForLocalhost in the ssh_config? Or I'm I reasoning wrongly?

link|improve this question

50% accept rate
1  
ssh-keysign and NoHostAuthenticationForLocalhost both relate to host authentication. They won't avoid having to specify a passphrase. Probably you want either a ssh-agent running on your server, or to use a passphraseless key for access from there. – slowdog Jul 17 '11 at 23:16
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.