service cvspserver
{
socket_type = stream
protocol = tcp
wait = no
user = root
passenv = PATH
server = /usr/bin/cvs
server_args = --allow-root=/cvs -f pserver
disable = no
}
|
The elements you will probably have to correct are: "server = /usr/bin/cvs" and "--allow-root=/cvs". The first element is the path to the executed CVS module. In some Linux distributives it can be located in different places. Parameter (--allow-root) specifies the location of the repository to which access will be provided. In our case it is /cvs. If you want to organize access to several repositories, the parameter should be replicated the required number of times.