Re: inetd.conf problem

2002-04-11 Thread Per Akesson

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



CVS on NT

2002-04-03 Thread Per Akesson

What are the pros and cons of running a CVS server on NT ?

We have mainly Windows CVS clients.

thanks in advance

--
Per Åkesson
Carmenta AB
SWEDEN



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



Re: login -> connection refused

2002-02-14 Thread Per Akesson

Softwareentwicklung Hauschel wrote:

> Hi all,in my /etc/services i have add the entry:cvspserver 2401/tcpin
> my /etc/inetd.conf i had add the entry:cvspserver stream tcp, nowait,
> root, /usr/bin/cvs -f --allow-root=/usr/cvs/CVSROOT pserveri tryed to
> login from my remote windows system like that:C:\Programme\cvs>cvs
> -d :pserver:[EMAIL PROTECTED]:/usr/cvs/ login
>
I think the first argument to /usr/bin/cvs should be argv[0], i.e.
"cvs", and then you should
add the options and arguments to /usr/bin/cvs, as in:

cvspserver stream tcp, nowait, root, /usr/bin/cvs cvs -f
--allow-root=/usr/cvs/CVSROOT pserver

regards

PS
  I don't you can use commas "," as field separators in inetd.conf

--
Per Åkesson
Carmenta AB
SWEDEN





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



Re: Modules problems

2001-09-11 Thread Per Akesson

Per Akesson wrote:

> I'm trying to define a module that picks certain directories and files
> from an existing hierarchy, i.e
>
> dir1/dir2
> dir1/dir3/file1.c
> dir2
>
> I've read the manual but I cannot get any of the module types nor
> combinations to achieve what I want to do.
>
> Can this be done with modules ?
>
> grateful for any answer
>

I forgot to add, I want to keep the original directory structure
and (preferably) top directory name after checkout.




--
Per Åkesson
Carmenta AB
SWEDEN





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



Modules problems

2001-09-10 Thread Per Akesson

I'm trying to define a module that picks certain directories and files
from an existing hierarchy, i.e

dir1/dir2
dir1/dir3/file1.c
dir2

I've read the manual but I cannot get any of the module types nor
combinations to achieve what I want to do.

Can this be done with modules ?

grateful for any answer

--
Per Åkesson
Carmenta AB
SWEDEN





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