Re: Estimate of when CVS will be available again? - Mailing list pgsql-general

From Sean Chittenden
Subject Re: Estimate of when CVS will be available again?
Date
Msg-id 20030608183230.GB65470@perrin.int.nxad.com
Whole thread Raw
In response to Re: Estimate of when CVS will be available again?  (The Hermit Hacker <scrappy@postgresql.org>)
Responses Re: Estimate of when CVS will be available again?  (The Hermit Hacker <scrappy@postgresql.org>)
List pgsql-general
> Without making a seperate repository, does anyone know if its
> possible to enable anon-cvs?  So far as I can tell, searching
> google, there is nothing that explains how to, nor in the info pages
> that comes with CVS ... but that doesn't mean that its not possible
> ...
>
> Am working on the snapshots themselves right now ...

It's very possible, but a bad idea, IMHO.  Performance and security
concerns aside (enforce security through filesystem permissions
too!!!):

cd CVSROOT
echo "anonymous" >> readers  # or username of anoncvs user (anoncvs?)
echo "anonymous::nobody" >> passwd
echo "readers" >> checkoutlist

for commiter in tgl, bruce, etc...
    echo "${committer}" >> writers
    echo "${committer}:*" >> passwd
done
echo "writers" >> checkoutlist
echo "passwd" >> checkoutlist

perl -p -i -e 's/#SystemAuth=no/SystemAuth=no/' config

cvs up
cvs ci


Use CVS_RSH = ssh, and make sure that committers commit files via ssh
instead of pserver.  Change nobody to whoever is your anonymous user
in terms of file system security.  If you have any probs, drop me a
private email.  -sc

--
Sean Chittenden

pgsql-general by date:

Previous
From: Patrick Welche
Date:
Subject: Re: check constraint
Next
From: The Hermit Hacker
Date:
Subject: Re: Estimate of when CVS will be available again?