"Simon Renshaw" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> Hi,
>
> I got pserver running on my linux server using xinetd.
>
> That is working fine.
>
> My cvspserver file for reference:
>
> service cvspserver
> {
>        socket_type     = stream
>        protocol        = tcp
>        wait            = no
>        user            = root
>        passenv         = PATH
>        server          = /usr/local/bin/cvs
>        server_args     = -f --allow-root=/usr/local/sceip pserver
> }
>
> The problem is that I need to access 2 repositories using pserver.

I don't have xinetd, but for inetd.conf, you do this:

cvspserver  stream  tcp  nowait  root  /usr/bin/cvs 
cvs  --allow_root=/repository/abc  --allow-root=/repository/xyz  pserver

So my guess would be to simply append another --allow-root entry to your 
server_args line.

- Dennis 


Reply via email to