Quoth Art:
> On Mon, 2003-12-15 at 17:04, Evan McNabb wrote:
>
>>> I've installed cvs on Redhat 9, but I haven't found an
>>> init script in /etc/init.d/ to start the pserver. It
>>> seems like redhat doesn't even ship with a cvs server.

>> I think pserver is controlled by xinetd. Enable it in
>> /etc/xinetd.d/cvspserver.

>> -Evan

> that file doen'st exist on my machine. What package do
> I need to install that contains those files. I already
> installed cvs via apt.

> Art

Depending on your distribution, the file might also be
called /etc/xinetd.d/cvs.  Or, you might be using old inetd
instead of xinetd, in which case, it's something like
/etc/inetd.conf.  In any case, the content of the file
(or the relevant inetd.conf section) should look something
like this:


service cvspserver
{
  disable          = no
  socket_type      = stream
  wait             = no
  user             = cvs
  group            = cvs
  log_type         = FILE /var/log/cvspserver
  protocol         = tcp
  env              = '$HOME=/home/cvs'
#  bind             = 10.10.10.10
#  log_on_failure  += USERID
  port             = 2401
  server           = /usr/bin/cvs
  server_args      = -f --allow-root=/home/cvs pserver
}

____________________
BYU Unix Users Group
http://uug.byu.edu/
___________________________________________________________________
List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list

Reply via email to