I am using an internal toy svn server, and svn client seems to be configured to store passwords in gnome-keyring by default. How can I disable it or at least switch to kwallet?

I am using Debian Testing.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

~/.subversion/config:

[auth]
password-stores = kwallet
link|improve this answer
feedback

To disable gnome-keyring for one run of svn:

SSH_AUTH_SOCK= svn...

To disable gnome-keyring SSH support:

gnome-session-properties
Untick/uncheck SSH Key Agent

To disable gnome-keyring completely:

vi /etc/pam.d/gdm  # or kdm
Delete the pam_gnome_keyring.so line

See also: GnomeKeyring/Ssh

You may also want to change the value of the svn store-plaintext-passwords option.

See Subversion 1.6 Release Notes - Prompting before storing passwords in plaintext form for details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.