Well, the trouble is that the ubuntu 9.04 documentation looks quite different than the real situation, and I really need your help!!!
Here is my situation:
apt-get install cvs ..... ok ....very smooth
apt-get install xinetd ..........very smooth
Quote:
|
cvs -d /home/developer/repository/cvs init
|
Quote:
root@workbook:~# ls -l /home/developer/repository/cvs
total 4
drwxrwxr-x 3 root src 4096 2009-10-22 18:55 CVSROOT
|
Quote:
root@workbook:~# cat /etc/cvs-cron.conf
ROT_HIST="no"
# Please use : to separate the repositories=
REPOS="/home/developer/repository/cvs"
ROTKEEP="no"
|
Quote:
root@workbook:~# cat /etc/cvs-pserver.conf
CVS_PSERV_REPOS="/home/developer/repository/cvs"
CVS_PSERV_LIMIT_MEM=hard
CVS_PSERV_LIMIT_DATA=hard
CVS_PSERV_LIMIT_CORE=0
CVS_PSERV_LIMIT_CPU=hard
|
Code:
root@workbook:/etc/xinetd.d# cat /etc/xinetd.d/cvspserver
service cvspserver
{
port = 2401
socket_type = stream
protocol = tcp
user = root
wait = no
type = UNLISTED
server = /usr/bin/cvs
server_args = -f --allow-root /home/developer/repository/cvs pserver
disable = no
}
BUT:
Code:
root@workbook:/etc/xinetd.d# /etc/init.d/xinetd start
* Starting internet superserver xinetd [fail]
I know my system is NOt ubuntu server but desktop/laptop
but how different is for the server and the desktop with respect to cvs?
Thanks!