| NAnt  Help  Task Reference  <cvs-pass> | v0.85 | 
Executes the cvs login command which appends or updates an entry to the specified .cvspass file.
| Attribute | Type | Description | Required | 
|---|---|---|---|
| password | string | Password to append or update to the .cvspass file. | True | 
| cvsroot | string | The repository root string. | False | 
| passfile | file | The full path to the .cvspass file. The default is ~/.cvspass. | False | 
| failonerror | bool | Determines if task failure stops the build, or is just reported. The default is true. | False | 
| if | bool | If true then the task will be executed; otherwise, skipped. The default is true. | False | 
| unless | bool | Opposite of if. If false then the task will be executed; otherwise, skipped. The default is false. | False | 
| verbose | bool | Determines whether the task should report detailed build log messages. The default is false. | False | 
Update .cvspass file to include the NAnt anonymous login.
<cvs-pass cvsroot=":pserver:anonymous@cvs.sourceforge.net:/cvsroot/nant" 
     password="anonymous"
     passfile="C:\.cvspass" />