1 | # |
---|
2 | # PyKota sample LDAP directory tree |
---|
3 | # |
---|
4 | # YOU CAN USE IT TO CREATE AN INITIAL LDAP TREE WITH PYKOTA SUPPORT. |
---|
5 | # |
---|
6 | # ITS STRUCTURE IS AN EXAMPLE : YOU CAN USE WHATEVER STRUCTURE YOU WANT, |
---|
7 | # PROVIDED YOU PUT CORRECT CONFIGURATION PARAMETERS IN /etc/pykota/pykota.conf |
---|
8 | # |
---|
9 | # |
---|
10 | # (c) 2003-2013 Jerome Alet <alet@librelogiciel.com> |
---|
11 | # This program is free software: you can redistribute it and/or modify |
---|
12 | # it under the terms of the GNU General Public License as published by |
---|
13 | # the Free Software Foundation, either version 3 of the License, or |
---|
14 | # (at your option) any later version. |
---|
15 | # |
---|
16 | # This program is distributed in the hope that it will be useful, |
---|
17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | # GNU General Public License for more details. |
---|
20 | # |
---|
21 | # You should have received a copy of the GNU General Public License |
---|
22 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | # |
---|
24 | # $Id$ |
---|
25 | # |
---|
26 | |
---|
27 | # The encrypted password below in clear text is : BlfUPg7t |
---|
28 | dn: cn=pykotaadmin,dc=example,dc=com |
---|
29 | objectClass: simpleSecurityObject |
---|
30 | objectClass: organizationalRole |
---|
31 | cn: pykotaadmin |
---|
32 | description: PyKota Administrator |
---|
33 | userPassword:: e1NNRDV9WkdTNXlobUNaVFdkY0lZWDdrOFUxc1VGOHY0PQ== |
---|
34 | |
---|
35 | # The encrypted password below in clear text is : ls88DT5j |
---|
36 | dn: cn=pykotauser,dc=example,dc=com |
---|
37 | objectClass: simpleSecurityObject |
---|
38 | objectClass: organizationalRole |
---|
39 | cn: pykotauser |
---|
40 | description: PyKota ReadOnly User |
---|
41 | userPassword:: e1NNRDV9ZFZrRjJWOG1QWGo1L3pTQkplSS9TK0hpYURBPQ== |
---|
42 | |
---|
43 | dn: ou=People,dc=example,dc=com |
---|
44 | ou: People |
---|
45 | objectClass: organizationalUnit |
---|
46 | |
---|
47 | dn: ou=Groups,dc=example,dc=com |
---|
48 | ou: Groups |
---|
49 | objectClass: organizationalUnit |
---|
50 | |
---|
51 | dn: ou=PyKota,dc=example,dc=com |
---|
52 | ou: PyKota |
---|
53 | objectClass: organizationalUnit |
---|
54 | |
---|
55 | dn: ou=Printers,ou=PyKota,dc=example,dc=com |
---|
56 | ou: Printers |
---|
57 | objectClass: organizationalUnit |
---|
58 | |
---|
59 | dn: ou=UQuotas,ou=PyKota,dc=example,dc=com |
---|
60 | ou: UQuotas |
---|
61 | objectClass: organizationalUnit |
---|
62 | |
---|
63 | dn: ou=GQuotas,ou=PyKota,dc=example,dc=com |
---|
64 | ou: GQuotas |
---|
65 | objectClass: organizationalUnit |
---|
66 | |
---|
67 | dn: ou=Jobs,ou=PyKota,dc=example,dc=com |
---|
68 | ou: Jobs |
---|
69 | objectClass: organizationalUnit |
---|
70 | |
---|
71 | dn: ou=LastJobs,ou=PyKota,dc=example,dc=com |
---|
72 | ou: LastJobs |
---|
73 | objectClass: organizationalUnit |
---|
74 | |
---|
75 | dn: ou=BillingCodes,ou=PyKota,dc=example,dc=com |
---|
76 | ou: BillingCodes |
---|
77 | objectClass: organizationalUnit |
---|