Re: Estimate of when CVS will be available again?

Поиск
Список
Период
Сортировка
От Sean Chittenden
Тема Re: Estimate of when CVS will be available again?
Дата
Msg-id 20030608183230.GB65470@perrin.int.nxad.com
обсуждение исходный текст
Ответ на Re: Estimate of when CVS will be available again?  (The Hermit Hacker <scrappy@postgresql.org>)
Ответы Re: Estimate of when CVS will be available again?  (The Hermit Hacker <scrappy@postgresql.org>)
Список 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 по дате отправления:

Предыдущее
От: Patrick Welche
Дата:
Сообщение: Re: check constraint
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: Estimate of when CVS will be available again?