Iqbal Shaikh wrote:

>
> Hi All,
>
> We  had  implemented a cvs  server on linux  6.2.
> We then faced the problem of  cvs repository  entries limitation
> in the  inetd.conf file.
>
> We have intentions of  having our cvs server installed on the Sun
> Solaris Machine.
> We have got  solaris 2.7 running on this machine.
>
> Just  want to know , if there will be similar limitations on
> inetd.conf  file
> on solaris2.7
> If there is then what could be the solution.

We encountered a command line limitation in inetd.conf on Solaris 2.7.

We solved by simply write a shell script with the cvs command line
and invoke the script from inetd.conf.

As in:

File: inetd.conf

cvspserver      stream  tcp     nowait  root    /usr/local/bin/cvs.inetd
cvs.inetd

and /usr/local/bin/cvs.inetd looks like:

#! /bin/sh
REPOS="--allow-root=/home/navtech/cvsroot \
 --allow-root=/home/sasfs/cvsroot \
 --allow-root=/home/spaceweb/cvsroot \
 --allow-root=/home/thf/cvsroot \
 --allow-root=/home/tlm/cvsroot"
/usr/local/bin/cvs $REPOS pserver


Works for us.

regards

--
Per �kesson
Carmenta AB
SWEDEN



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

Reply via email to