"RAJAGOPAL, AARTI (SBCSI)" writes:
> 
> Set up inetd.conf as follows:
> cvspserver      stream  tcp     nowait  root    cvsscript

You're missing a field -- there are supposed to be seven, not six.  You
need the full path to the script as the next-to-last field.

> Contents of cvsscript:
> #!/bin/ksh
> /usr/bin/env -i /usr/local/bin/cvs -f --allow-root=/home/cvs/area1 
> --allow-root=/home/cvs/area2 pserver

You can eliminate an unneeded process by "exec"ing /usr/bin/env:

        #!/bin/ksh
        exec /usr/bin/env -i /usr/local/bin/cvs -f --allow-root=/home/cvs/area1 
--allow-root=/home/cvs/area2 pserver

-Larry Jones

Temporary insanity!  That's all it was! -- Calvin


_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to