Table of Contents
/export/cvswork # cvs working folder. Modules come and go often
# keep a local copy just to save bandwidth
/export/cvsarchive # my own local cvs archive. keep foreverSetting up CVS as a server on a Linux Box
http://www.kryptonians.net/cvs/server_setup.html
# grep cvs /etc/services cvspserver 2401/tcp # CVS client/server operations cvspserver 2401/udp # CVS client/server operations cvsup 5999/tcp CVSup # CVSup file transfer/John Polstra/FreeBSD cvsup 5999/udp CVSup # CVSup file transfer/John Polstra/FreeBSD
This identifies the port CVS server will use. In most Linux/Unix installations, this is already defined. Port 2401 is the commonly accepted default port for CVS use.
xsel -p > /etc/xinetd.d/cvspserver
service cvspserver
{
socket_type = stream
protocol = tcp
wait = no
user = root
passenv = PATH
server = /usr/bin/cvs
server_args = -f -l --allow-root=/export/cvs pserver
disable = no
}