/[adm]/puppet/modules/openldap/templates/mandriva-dit-access.conf
ViewVC logotype

Contents of /puppet/modules/openldap/templates/mandriva-dit-access.conf

Parent Directory Parent Directory | Revision Log Revision Log


Revision 392 - (show annotations) (download)
Mon Nov 22 13:20:26 2010 UTC (13 years, 5 months ago) by buchan
File size: 7126 byte(s)
Fix host access to posixAccount attrs

1 # mandriva-dit-access.conf
2
3 limits group="cn=LDAP Replicators,ou=System Groups,<%= dc_suffix %>"
4 limit size=unlimited
5 limit time=unlimited
6
7 limits group="cn=LDAP Admins,ou=System Groups,<%= dc_suffix %>"
8 limit size=unlimited
9 limit time=unlimited
10
11 limits group="cn=Account Admins,ou=System Groups,<%= dc_suffix %>"
12 limit size=unlimited
13 limit time=unlimited
14
15 # so we don't have to add these to every other acl down there
16 access to dn.subtree="<%= dc_suffix %>"
17 by group.exact="cn=LDAP Admins,ou=System Groups,<%= dc_suffix %>" write
18 by group.exact="cn=LDAP Replicators,ou=System Groups,<%= dc_suffix %>" read
19 by * break
20
21 # userPassword access
22 # Allow account registration to write userPassword of unprivileged users accounts
23 access to dn.subtree="ou=People,<%= dc_suffix %>"
24 filter="(&(objectclass=inetOrgPerson)(!(objectclass=posixAccount)))"
25 attrs=userPassword,pwdReset
26 by group/groupOfNames/member.exact="cn=registrars,ou=system groups,<%= dc_suffix %>" +a
27 by * +0 break
28
29 # shadowLastChange is here because it needs to be writable by the user because
30 # of pam_ldap, which will update this attr whenever the password is changed.
31 # And this is done with the user's credentials
32 access to dn.subtree="<%= dc_suffix %>"
33 attrs=shadowLastChange
34 by self write
35 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
36 by users read
37 access to dn.subtree="<%= dc_suffix %>"
38 attrs=userPassword
39 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
40 by self write
41 by anonymous auth
42 by * none
43
44 # kerberos key access
45 # "by auth" just in case...
46 access to dn.subtree="<%= dc_suffix %>"
47 attrs=krb5Key
48 by self write
49 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
50 by anonymous auth
51 by * none
52
53 # password policies
54 access to dn.subtree="ou=Password Policies,<%= dc_suffix %>"
55 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
56 by users read
57
58 # samba password attributes
59 # by self not strictly necessary, because samba uses its own admin user to
60 # change the password on the user's behalf
61 # openldap also doesn't auth on these attributes, but maybe some day it will
62 access to dn.subtree="<%= dc_suffix %>"
63 attrs=sambaLMPassword,sambaNTPassword
64 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
65 by anonymous auth
66 by self write
67 by * none
68 # password history attribute
69 # pwdHistory is read-only, but ACL is simplier with it here
70 access to dn.subtree="<%= dc_suffix %>"
71 attrs=sambaPasswordHistory,pwdHistory
72 by self read
73 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
74 by * none
75
76 # pwdReset, so the admin can force an user to change a password
77 access to dn.subtree="<%= dc_suffix %>"
78 attrs=pwdReset,pwdAccountLockedTime
79 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
80 by self read
81
82 # group owner can add/remove/edit members to groups
83 access to dn.regex="^cn=[^,]+,ou=(System Groups|Group),<%= dc_suffix %>$"
84 attrs=member
85 by dnattr=owner write
86 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
87 by users +sx
88
89 access to dn.regex="^cn=[^,]+,ou=(System Groups|Group),<%= dc_suffix %>$"
90 attrs=cn,description,objectClass,gidNumber
91 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
92 by users read
93
94 # registration - allow registrar group to create basic unprivileged accounts
95 access to dn.subtree="ou=People,<%= dc_suffix %>"
96 attrs="objectClass"
97 val="inetOrgperson"
98 by group/groupOfNames/member.exact="cn=registrars,ou=system groups,<%= dc_suffix %>" =asrx
99 by * +0 break
100
101 access to dn.subtree="ou=People,<%= dc_suffix %>"
102 filter="(!(objectclass=posixAccount))"
103 attrs=cn,sn,gn,mail,entry,children,preferredLanguage
104 by group/groupOfNames/member.exact="cn=registrars,ou=system groups,<%= dc_suffix %>" =asrx
105 by * +0 break
106
107 # TODO maybe we should use a group instead of a user here
108 access to dn.subtree="ou=People,<%= dc_suffix %>"
109 filter="(objectclass=posixAccount)"
110 attrs=homeDirectory,cn,uid,loginShell,gidNumber,uidNumber
111 by dn.one="ou=Hosts,<%= dc_suffix %>" read
112 by * +0 break
113
114 # let the user change some of his/her attributes
115 access to dn.subtree="ou=People,<%= dc_suffix %>"
116 attrs=carLicense,homePhone,homePostalAddress,mobile,pager,telephoneNumber,mail,preferredLanguage
117 by self write
118 by users read
119
120 # create new accounts
121 access to dn.regex="^([^,]+,)?ou=(People|Group|Hosts),<%= dc_suffix %>$"
122 attrs=children,entry
123 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
124 by * break
125 # access to existing entries
126 access to dn.regex="^[^,]+,ou=(People|Hosts|Group),<%= dc_suffix %>$"
127 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
128 by * break
129
130 # sambaDomainName entry
131 access to dn.regex="^(sambaDomainName=[^,]+,)?<%= dc_suffix %>$"
132 attrs=children,entry,@sambaDomain,@sambaUnixIdPool
133 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
134 by users read
135
136 # samba ID mapping
137 access to dn.regex="^(sambaSID=[^,]+,)?ou=Idmap,<%= dc_suffix %>$"
138 attrs=children,entry,@sambaIdmapEntry
139 by group.exact="cn=Account Admins,ou=System Groups,<%= dc_suffix %>" write
140 by group.exact="cn=IDMAP Admins,ou=System Groups,<%= dc_suffix %>" write
141 by users read
142
143 # global address book
144 # XXX - which class(es) to use?
145 access to dn.regex="^(.*,)?ou=Address Book,<%= dc_suffix %>"
146 attrs=children,entry,@inetOrgPerson,@evolutionPerson,@evolutionPersonList
147 by group.exact="cn=Address Book Admins,ou=System Groups,<%= dc_suffix %>" write
148 by users read
149
150 # dhcp entries
151 # XXX - open up read access to anybody?
152 access to dn.sub="ou=dhcp,<%= dc_suffix %>"
153 attrs=children,entry,@dhcpService,@dhcpServer,@dhcpSharedNetwork,@dhcpSubnet,@dhcpPool,@dhcpGroup,@dhcpHost,@dhcpClass,@dhcpSubClass,@dhcpOptions,@dhcpLeases,@dhcpLog
154 by group.exact="cn=DHCP Admins,ou=System Groups,<%= dc_suffix %>" write
155 by group.exact="cn=DHCP Readers,ou=System Groups,<%= dc_suffix %>" read
156 by * read
157
158 # sudoers
159 access to dn.regex="^([^,]+,)?ou=sudoers,<%= dc_suffix %>$"
160 attrs=children,entry,@sudoRole
161 by group.exact="cn=Sudo Admins,ou=System Groups,<%= dc_suffix %>" write
162 by users read
163
164 # dns
165 access to dn="ou=dns,<%= dc_suffix %>"
166 attrs=entry,@extensibleObject
167 by group.exact="cn=DNS Admins,ou=System Groups,<%= dc_suffix %>" write
168 by users read
169 access to dn.sub="ou=dns,<%= dc_suffix %>"
170 attrs=children,entry,@dNSZone
171 by group.exact="cn=DNS Admins,ou=System Groups,<%= dc_suffix %>" write
172 by group.exact="cn=DNS Readers,ou=System Groups,<%= dc_suffix %>" read
173 by * none
174
175
176 # MTA
177 # XXX - what else can we add here? Virtual Domains? With which schema?
178 access to dn.one="ou=People,<%= dc_suffix %>"
179 attrs=@inetLocalMailRecipient,mail
180 by group.exact="cn=MTA Admins,ou=System Groups,<%= dc_suffix %>" write
181 by users read
182
183 # KDE Configuration
184 access to dn.sub="ou=KDEConfig,<%= dc_suffix %>"
185 by group.exact="cn=KDEConfig Admins,ou=System Groups,<%= dc_suffix %>" write
186 by * read
187
188 # last one
189 access to dn.subtree="<%= dc_suffix %>" attrs=entry,uid,cn
190 by users read
191

  ViewVC Help
Powered by ViewVC 1.1.30