]> git.sur5r.net Git - openldap/blob - servers/slapd/overlays/README
Fix prev commit, return generated passwd
[openldap] / servers / slapd / overlays / README
1 # $OpenLDAP$
2
3 This directory is still a work in progress. As such, no explicit makefile
4 is provided.
5
6 The overlays are meant to be built as dynamically loaded modules.
7 To build a particular overlay, use commands of this form:
8
9         libtool --mode=compile cc -I../../../include -I.. -c dyngroup.c
10         libtool --mode=link cc -rpath /module/executable/path \
11                 -module -o dyngroup.la dyngroup.lo
12
13 To use the dyngroup overlay on a backend, set slapd.conf as follows:
14
15         moduleload /module/executable/path/dyngroup.la
16
17         database bdb
18         ... (BDB configuration)
19         overlay dyngroup
20         attrpair member memberurl
21
22 Replace "/module/executable/path" with the full pathname of the directory
23 where the module will be installed.