You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by David Aldrich <da...@gmail.com> on 2019/08/20 12:29:19 UTC

Nested groups in path based authorization?

Does svn path based authorization support nested groups?

group_a = fred,jim
group_b = jane,@group_a

Best regards
David

Re: Nested groups in path based authorization?

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
David Aldrich wrote on Tue, 20 Aug 2019 12:29 +00:00:
> Does svn path based authorization support nested groups?
> 
> group_a = fred,jim
> group_b = jane,@group_a
> 
> Best regards
> David

[[[
% cat authz
[groups]
group_a = fred,jim
group_b = jane,@group_a

[/]
* = 
@group_b = r
% svnauthz accessof --repository=r --path=/trunk -R --username=jane    ./authz 
r
% svnauthz accessof --repository=r --path=/trunk -R --username=fred    ./authz 
r
% svnauthz accessof --repository=r --path=/trunk -R --username=jrandom ./authz 
no
% 
]]]

Looks like it does.

Cheers,

Daniel