bundles/openldap: fix access
This commit is contained in:
parent
fe36345e5f
commit
7d2e00d46f
1 changed files with 7 additions and 5 deletions
|
@ -73,10 +73,12 @@ access to *
|
||||||
|
|
||||||
% for tree, matches in sorted(conf.get('access', {}).items()):
|
% for tree, matches in sorted(conf.get('access', {}).items()):
|
||||||
# ${tree}
|
# ${tree}
|
||||||
% for access, user in sorted(matches.items()):
|
% for access, users in sorted(matches.items()):
|
||||||
|
% for user in sorted(users):
|
||||||
access to dn.sub="${tree}"
|
access to dn.sub="${tree}"
|
||||||
by dn.exact="${user}" ${access}
|
by dn.exact="${user}" ${access}
|
||||||
by * break
|
by * break
|
||||||
|
% endfor
|
||||||
% endfor
|
% endfor
|
||||||
# / ${tree}
|
# / ${tree}
|
||||||
|
|
||||||
|
@ -88,11 +90,11 @@ access to dn.children="ou=Applications,dc=qzwi,dc=de"
|
||||||
by anonymous auth
|
by anonymous auth
|
||||||
by * break
|
by * break
|
||||||
access to dn.sub="ou=Users,dc=qzwi,dc=de"
|
access to dn.sub="ou=Users,dc=qzwi,dc=de"
|
||||||
by dn.children="ou=Applications,dc=qzwi,dc=de"
|
by dn.children="ou=Applications,dc=qzwi,dc=de" read
|
||||||
read by * break
|
by * break
|
||||||
access to dn.sub="ou=Groups,dc=qzwi,dc=de"
|
access to dn.sub="ou=Groups,dc=qzwi,dc=de"
|
||||||
by dn.children="ou=Applications,dc=qzwi,dc=de"
|
by dn.children="ou=Applications,dc=qzwi,dc=de" read
|
||||||
read by * break
|
by * break
|
||||||
|
|
||||||
database monitor
|
database monitor
|
||||||
rootDN "cn=admin,cn=Monitor"
|
rootDN "cn=admin,cn=Monitor"
|
||||||
|
|
Loading…
Reference in a new issue