Ok, I got about the script... I�ve changed the file /etc/cvs-pserver.conf with
CVS_PSERV_REPOS="/u01/cvs/lempert" and everything worked fine. My installation is Debian Woody... Thanks a lot to everybody... Alejandro G�mez IT Analyst Lempert y Asociados S.A. Donaciano del Campillo 2068 Cerro de las Rosas X 5009 JRZ C�rdoba - Argentina (+54+351) 481-6001 Ext. 105/107 [EMAIL PROTECTED] http://www.lempert.com.ar ----- Original Message ----- From: "Alejandro G�mez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 07, 2002 4:52 PM Subject: Re: no such repository > Yes, it�s a script! > > #!/bin/sh > # $Debian$ > # Execute pserver > unset HOME > if [ -f /etc/cvs-pserver.conf ]; then > . /etc/cvs-pserver.conf > elif [ -f /etc/cvs.conf ]; then > . /etc/cvs.conf > else > CVS_PSERV_REPOS="" > fi > allow_root_opts="" > OLDIFS="$IFS" > IFS=':' > for i in $CVS_PSERV_REPOS; do > IFS="$OLDIFS" > allow_root_opts="$allow_root_opts --allow-root=$i" > done > cvs_tmp_dir="" > [ "$CVS_TMP_DIR" != "" ] && cvs_tmp_dir="-T $CVS_TEMP_DIR" > exec /usr/bin/cvs -b /usr/bin ${cvs_tmp_dir} ${allow_root_opts} pserver > # End of file. > > and /etc/cvs-pserver.conf is: > > quigon:/etc# cat cvs-pserver.conf > CVS_PSERV_REPOS="/var/lib/cvs" > > I don�t know much of bash scripting, but I think I should modify the script > with > > allow_root_opts="/u01/cvs/lempert" > > It�s right? > > Alejandro G�mez > IT Analyst > Lempert y Asociados S.A. > > Donaciano del Campillo 2068 > Cerro de las Rosas > X 5009 JRZ > C�rdoba - Argentina > (+54+351) 481-6001 Ext. 105/107 > [EMAIL PROTECTED] > http://www.lempert.com.ar > > ----- Original Message ----- > From: "Larry Jones" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Monday, October 07, 2002 4:41 PM > Subject: Re: no such repository > > > > =?iso-8859-1?Q?Alejandro_G=F3mez?= writes: > > > > > > server = /usr/sbin/cvs-pserver > > > > Is that the actual CVS executable or a script of some kind? My guess is > > that it's a script and it's not passing on the --allow-root= argument. > > > > -Larry Jones > > > > The real fun of living wisely is that you get to be smug about it. -- > Hobbes > > > > > _______________________________________________ > Info-cvs mailing list > [EMAIL PROTECTED] > http://mail.gnu.org/mailman/listinfo/info-cvs _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
