Ritesh Sugandhi writes [in very long, base64 encrypted lines]: > > I have create another user2 that is belog to user1 group and i > he is able to login to the CVS remotely but But when we check > out the files from the repositary , It will give the following error . > > setuid failed: operation not permitted > cvs [ checkout abourted] : authorization failed : server 192.168.202.56 rejected >access
You are running the server as user1 rather than as root, so it is not able to become user2. You either need to run the server as root, use the :ext: access method rather than :pserver:, or map user2 to user1 in the CVSROOT/passwd file (see the manual for details: <http://www.cvshome.org/docs/manual/cvs_2.html#SEC29>). If you use the last method, you won't be able to use file permissions to control access to individual directories (since both users will actually be running as user1), you will only be able to control access to the repository as a whole (using the CVSROOT/readers and/or CVSROOT/writers files). -Larry Jones I'm so disappointed. -- Calvin _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
