5

Please help me in generating the .cvspass file to configure hudson tool .

rene
  • 41,474
  • 78
  • 114
  • 152
scott
  • 51
  • 1
  • 3

2 Answers2

9

this is simple, run form commandline

cvs -d :pserver:login:password@host:/dir/ login

This create .cvspass for you.

OR

simple paste to hudson CVSROOT variable this:

:pserver:login:password@host:/dir/

This is with password, so you dont need to create .cvspass

Akhil Jain
  • 13,872
  • 15
  • 57
  • 93
MariuszS
  • 30,646
  • 12
  • 114
  • 155
1

.cvspass is only created using a windows native compiled CVS.

Confirm using cvs -version that you are not using cvs (CVSNT). CVSNT does not create .cvspass.

AJMansfield
  • 4,039
  • 3
  • 29
  • 50
Ajoy
  • 11
  • 1