In message <8bh8oi$[EMAIL PROTECTED]>, "David Katz" writes:
>I'm having a devil of a time logging into cvs using pserver. I know
>cvs is working properly. I can use it from the command line to check
>things in and out (just not log in). I think the problem has to do
>with the passwd setup. On Mandrake Linux (a flavor similar to Red
>Hat), the /etc/passwd file using shadowing, so cvs can't read the
>passwords directly from there.
[caveat: I am fairly new to cvs, so this advice might only be worth what you
paid for it :]
>CVSROOT/passwd
> cvs_root:$1$acZgejPN$G9TuTzvI49woVf9.zJ3YM0 (<-- currently with salt)
If "cvs_root" is not actually a real account, you need to map it to an
existing account.
Ex:
cvs_root:<crypt>:nobody
would tell pserver that when it gets a connection from cvs_root, that
connection should have the file permissions of real user nobody.
Also, the above crypt looks like an MD5 crypt. Does pserver understand those?
At worst, try using a standard des crypt(3). You should end up with 13
characters in total.
Everything else looks right.
Hope this helps,
- Rob
.