radistao
radistao

Reputation: 15504

How to change SVN user password by himself

We have local SVN repo over Apache location with WebDAV. Our passwords are stored in passwd file using htpasswd command.

In this situation only admin can add/change/assign a password to user using

sudo htpasswd /etc/subversion/passwd <username>

But we need to add possibility to change password by user-self, so after admin added new user - user would be able to change password to own.

Is there any ready or easy to implement solution to realize this feature? May be some CMS or other LAMP solution? Or CGI...

Of course, every user should be able to change only his own password

Upvotes: 1

Views: 11642

Answers (2)

M-Razavi
M-Razavi

Reputation: 3467

I found a little Perl script which allow each SVN user change his password. svnpasswd

Upvotes: 0

Shaun Hare
Shaun Hare

Reputation: 3871

Maybe something like submin would work for you http://supermind.nl/submin/about.html ?

Upvotes: 1

Related Questions