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.
Matt Schuckmann wrote: > I've turned on all kinds of security audit logging for myself, my user, and > the SYSTEM and can't find any place where it reports a failure (plenty of > successes but no failures) > I can see in the security logging where the SYSTEM account successfully > accesses the CVSROOT/config file and CVSROOT/passwd file then for me my > account accesses the root of the repository but in my users case it goes off > accessing some temporary directory in the temp folder with out an error or > failure or anything. > I don't get it. That's just wierd. The line you're failing on is just: if(CVS_CHDIR(newroot->directory)<0) error(1,errno,"Repository directory %s does not exist",newroot->directory); ie. It changes directory to the current repository, and if it can't just dies (because nothing else is going to work either unless it can do that). Permission denied is just that... the user doesn't have access. Precisely why you're not seeing the failure in the audit logs I have no idea. Tony