info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: inetd.conf problem


From: Per Akesson
Subject: Re: inetd.conf problem
Date: Thu, 11 Apr 2002 13:47:08 +0000

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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]