blob: a911e9c4ad60279c03f6c86bed34033f190c53bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#define CONFDB_BASE_LDIF \
"dn: @ATTRIBUTES\n" \
"cn: CASE_INSENSITIVE\n" \
"dc: CASE_INSENSITIVE\n" \
"dn: CASE_INSENSITIVE\n" \
"name: CASE_INSENSITIVE\n" \
"objectclass: CASE_INSENSITIVE\n" \
"\n" \
"dn: @INDEXLIST\n" \
"@IDXATTR: cn\n" \
"\n" \
"dn: @MODULES\n" \
"@LIST: server_sort\n" \
"\n" \
"dn: cn=config\n" \
"cn: config\n" \
"version: 0.1\n" \
"description: base object\n" \
"\n" \
"dn: cn=services,cn=config\n" \
"cn: services\n" \
"description: Local service configuration\n" \
"activeServices: dp\n" \
"activeServices: nss\n" \
"activeServices: pam\n" \
"activeServices: info\n" \
"\n" \
"dn: cn=monitor,cn=services,cn=config\n" \
"cn: monitor\n" \
"description: Monitor Configuration\n" \
"\n" \
"dn: cn=dp,cn=services,cn=config\n" \
"cn: dp\n" \
"description: Data Provider Configuration\n" \
"\n" \
"dn: cn=nss,cn=services,cn=config\n" \
"cn: nss\n" \
"description: NSS Responder Configuration\n" \
"\n" \
"dn: cn=pam,cn=services,cn=config\n" \
"cn: pam\n" \
"description: PAM Responder Configuration\n" \
"\n" \
"dn: cn=domains,cn=config\n" \
"cn: domains\n" \
"description: Domains served by SSSD\n" \
"default: LOCAL\n" \
"\n" \
"dn: cn=LOCAL,cn=domains,cn=config\n" \
"cn: LOCAL\n" \
"description: LOCAL domain\n" \
"enumerate: 3\n" \
"magicPrivateGroups: TRUE\n" \
"\n"
|