Trouble with SVN Subversion Edge Access Rules

504 Views Asked by At

I'm having trouble granting permissions to certain users in Collabnet SVN Subversion Edge. I currently have 3 repos: documentation, ipm and modules. I have two users: jeremy.johnson and jeremyj. I want to give read access to jeremyj for documentation and ipm and give jeremy.johnson access to modules. I don't want the users to see each other's repos.

I can't do

    [/]
    * = r 

Because then everyone can see everyone.

So instead I did this

    [documentation:/]
    jeremyj = r

    [ipm:/]
    jeremyj = r

    [modules:/]
    jeremy.johnson = r

but that doesn't seem to allow anything. Whether I log in as jeremyj or jeremy.johnson I don't have access to any of them. The only way I can get to access any of them is if I use the wildcard but that defeats the purpose.

I also tried adding it to the \documentation\conf\authz file but that seemed to do nothing at all.


Edited with @Lazy Badger's suggestions: To show the actual syntax and case I'm using I'm attaching screen shots instead.

access rules users repos

But jeremy.johnson can still see the contents of documentation.

2

There are 2 best solutions below

5
On

You must

[/]
* = r 

or, maybe better

~$anonymous = r

and revoke access at per-repositopy basis for every user

[documentation:/]
jeremyj = r
jeremy.johnson = 

[ipm:/]
jeremyj = r
jeremy.johnson = 

[modules:/]
jeremyj = 
jeremy.johnson = r

This way everybody will can see the full list of repos, but not their content

0
On

What you are doing ought to work. The canonical documentation for the authz feature and syntax is here: http://svnbook.red-bean.com/en/1.8/svn.serverconfig.pathbasedauthz.html

To troubleshoot I would look at the Apache access log. You ought to be able to see the entries added when your client accesses the repository. Look for the logged username. My guess is that something does not match the rules. Maybe the case is different or your client is authenticating with a different username then you think. The authz rules need to match the username you see logged.