Tested on 8 May 2005 by FC3
# rpm -ihv cvs-1.11.17-6.FC3.rpm # groupadd cvs # useradd cvs -g cvs -d /home/cvs # passwd cvs # chmod 2770 /home/cvs
# su - cvs $ vi .bashrc
export CVSROOT=/home/cvs
$ source .bashrc
$ cvs init
$ cd CVSROOT $ htpasswd -c ./passwd hoge New password: Re-type new password: Adding password for user hoge
$ htpasswd ./passwd foo New password: Re-type new password: Adding password for user foo
hoge:3Rmfv013pLLc2:cvs foo:jN95DpctkFqkk:cvs
# cd /etc/xinetd.d # vi cvspserver
service cvspserver
{
socket_type = stream
wait = no
disable = no
user = cvs.cvs
server = /usr/bin/cvs
server_args = --allow-root=/home/cvs pserver
}
# service xinetd restart