Even the online docs at cvshome.org mention the 'old' way of doing it. So if you want to allow pserver access, you need something like this in /etc/xinetd.d/pserver:
service cvspserver
{
disable = no
socket_type = stream
wait = no
user = cvs
group = cvs
log_type = FILE /var/log/cvspserver
protocol = tcp
env = '$HOME=/home/cvsroot'
log_on_failure += USERID
port = 2401
server = /usr/bin/cvs
server_args = -f --allow-root=/usr/local/cvsrepo pserver
}and while I'm at it, I might as well tell you that restarting xinetd is as simple as
/etc/init.d/xinetd restart
This little command is not mentioned frequently, but saves you from having to reboot the machine after changes are made. (I really hate tutorials that say: "Then restart xinetd" with no mention of how to do that.)
- Greg _______________________________________________ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss
