Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
When I try and use the cvs chacl command I get an unknown command error out of CVS. Any ideals? Thanks "Tony Hoyle" <tmh at nodomain.org> wrote in message news:3d8f1a0c.7469109 at news.cvsnt.org... > On Mon, 23 Sep 2002 09:40:51 -0400, "Jeffrey S. Nelson" > <jnelson at covansys.com> wrote: > > >This is a multi-part message in MIME format. > > > >------=_NextPart_000_0054_01C262E5.4E419970 > >Content-Type: text/plain; > > charset="iso-8859-1" > >Content-Transfer-Encoding: quoted-printable > > > >I found a reference to setting branch level access, however I don't seem = > >to be able to find a detailed description of doing this. > > > >I am trying to set permissions at certain branches so that only limited = > >users can update the branch. I would also like to set permissions on = > >the HEAD stream so that limited users can have write access. =20 > > > >Has anyone done anything like this? If so do you have an example? > > > Something like this should work (as a repository administrator, so you > don't lock yourself out): > > Lock down 'mybranch' so that only user1 and user2 have read/write > access to it: > > cvs chacl -R -r mybranch user1:rwc > cvs chacl -R -r mybranch user2:rwc > cvs chacl -R -r mybranch default:n > > Lock down HEAD so only certain users can write, others > can read: > > cvs chacl -R user3:rwc > cvs chacl -R user4:rwc > cvs chacl -R default:r > > Tony >