diff options
author | Tal Peer <coredumb@gentoo.org> | 2003-09-28 17:24:18 +0000 |
---|---|---|
committer | Tal Peer <coredumb@gentoo.org> | 2003-09-28 17:24:18 +0000 |
commit | 3c9574829c3c790ae461e1e0b688d65554bbe4c9 (patch) | |
tree | 4ebe68bb4eb2028c91025b666ab089441adf7f61 /eclass/cvs.eclass | |
parent | Implemented ECVS_CLEAN - for fetching a clean copy of the repository when upd... (diff) | |
download | gentoo-2-3c9574829c3c790ae461e1e0b688d65554bbe4c9.tar.gz gentoo-2-3c9574829c3c790ae461e1e0b688d65554bbe4c9.tar.bz2 gentoo-2-3c9574829c3c790ae461e1e0b688d65554bbe4c9.zip |
Clarify things a bit
Diffstat (limited to 'eclass/cvs.eclass')
-rw-r--r-- | eclass/cvs.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass index 72c62c3206d5..7c53f44064d6 100644 --- a/eclass/cvs.eclass +++ b/eclass/cvs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.48 2003/09/28 17:19:43 coredumb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.49 2003/09/28 17:24:18 coredumb Exp $ # # Current Maintainer: Tal Peer <coredumb@gentoo.org> # Original Author: Dan Armak <danarmak@gentoo.org> @@ -15,6 +15,7 @@ # TODO: # Implement more auth types (gserver?, kserver?) # Implement more 'ext' auth methods (do anyone actually use it with anything other than ssh?) +# Add support for password-based ssh (only keys supported now) ECLASS=cvs INHERITED="$INHERITED $ECLASS" @@ -57,7 +58,8 @@ INHERITED="$INHERITED $ECLASS" [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline" # Authentication method to use - possible values are "pserver" and "ext" -# WARNING ext is NOT supported! (never was, despite what earlier version of this file said) +# Currently, only method for 'ext' is ssh, please note that it doesn't +# work with passwords, only with keys. [ -z "$ECVS_AUTH" ] && ECVS_AUTH="pserver" # Use su to run cvs as user |