Hi Mary, > -----Original Message----- > From: [email protected] [mailto:[email protected]] On > Behalf Of Mary Loftis > > I set the authz_module_name = Beth_test in the trac.ini but it had no affect. > I also removed the loading of mod_access_compat and switched to using the > Require statements as is preferred with Apache 2.4. It is sto;; letting me > browse the svn repo even though the authz_file permissions do not list my id > for that repo. > > The svn access file contains the following. My id is utcaus\leftism. I am > only in the admin group which has r/w access to /. I am not in the other > groups which have access to the repos defined under slash. > > > [groups] > admin = utcaus\loftism, utcaus\vasquer-a, utcaus\g0044320 > # > SVNtestteam = utcaus\haugsch, utcaus\welcher, utcaus\vasquer-a, > utcaus\g0044320 > # > Bethtestteam = utcaus\welcher, utcaus\vasquer-a, utcaus\g0044320 > # > [/] > @admin = rw > # Allow developers complete access to their project repos > # > [SVN_test:/] > @SVNtestteam = rw > # > [Beth_test:/] > @Bethtestteam = rw
Your authz file is not doing what you think it is. [/] applies to the root of all repos and remains in force unless you override. To stop `@admin` from `SVN_test` you should use something like: [SVN_test:/] @admin = @SVNtestteam = rw Check out the subversion book:- http://svnbook.red-bean.com/nightly/en/svn.serverconfig.pathbasedauthz.html#svn.serverconfig.pathbasedauthz.getting-started Regards, ~ Mark C -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/d/optout.
