source: release-kits/lirk3/bin/ant-installer/web/manual1.7.0/manual/CoreTasks/cvspass.html@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 2.4 KB
Line 
1<!--
2 Licensed to the Apache Software Foundation (ASF) under one or more
3 contributor license agreements. See the NOTICE file distributed with
4 this work for additional information regarding copyright ownership.
5 The ASF licenses this file to You under the Apache License, Version 2.0
6 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<html>
18
19<head>
20<meta http-equiv="Content-Language" content="en-us">
21<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
22<title>CVSPass Task</title>
23</head>
24
25<body>
26
27<h2><a name="cvs">cvspass</a></h2>
28<h3>Description</h3>
29<p>Adds entries to a .cvspass file. Adding entries to this file has the same affect as a cvs login command.</p>
30
31<p><b>CVSNT Note</b>: CVSNT prefers users to store the passwords
32inside the registry. If the task doesn't seem to work for you, the
33most likely reason is that CVSNT ignores your .cvspass file
34completely. See <a
35href="http://issues.apache.org/bugzilla/show_bug.cgi?id=21657#c5">bug
36zilla report 21657</a> for recommended workarounds.</p>
37
38<h3>Parameters</h3>
39<table border="1" cellpadding="2" cellspacing="0">
40 <tr>
41 <td valign="top"><b>Attribute</b></td>
42 <td valign="top"><b>Description</b></td>
43 <td align="center" valign="top"><b>Required</b></td>
44 </tr>
45 <tr>
46 <td valign="top">cvsroot</td>
47 <td valign="top">the CVS repository to add an entry for.</td>
48 <td align="center" valign="top">Yes</td>
49 </tr>
50 <tr>
51 <td valign="top">password</td>
52 <td valign="top">Password to be added to the password file.</td>
53 <td align="center" valign="top">Yes</td>
54 </tr>
55 <tr>
56 <td valign="top">passfile</td>
57 <td valign="top">Password file to add the entry to.</td>
58 <td align="center" valign="top">No, default is <code>~/.cvspass</code>.</td>
59 </tr>
60</table>
61<h3>Examples</h3>
62<pre> &lt;cvspass cvsroot=&quot;:pserver:[email protected]:/home/cvspublic&quot;
63 password=&quot;anoncvs&quot;
64 /&gt;</pre>
65<p>Adds an entry into the ~/.cvspass password file.</p>
66
67
68</body>
69</html>
70
Note: See TracBrowser for help on using the repository browser.