]> git.sur5r.net Git - openldap/commitdiff
ITS#5245
authorQuanah Gibson-Mount <quanah@openldap.org>
Fri, 8 Feb 2008 19:40:58 +0000 (19:40 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Fri, 8 Feb 2008 19:40:58 +0000 (19:40 +0000)
CHANGES
doc/man/man5/slapo-auditlog.5

diff --git a/CHANGES b/CHANGES
index 2f1215d5d40f57a2b8859d42206ac94220120f29..779cc3352ee2417b6cbf7e625ebd07c566f94e04 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,10 +1,11 @@
 OpenLDAP 2.4 Change Log
 
-OpenLDAP 2.4.X Engineering
+OpenLDAP 2.4.8 Engineering
        Fixed slapd include handling (ITS#5276)
        Fixed libldap_r threaded library linking (ITS#4982)
        Documentation
                DB_CONFIG.example URL wrong in comments (ITS#5288)
+               Add cn=config example for auditlog (ITS#5245)
 
 OpenLDAP 2.4.7 Release (2007/12/14)
        Added slapd ordered indexing of integer attributes (ITS#5239)
index ec50acd09c405764bbeb0212f9978a7c06f4994d..8d65f21e715443be35323d69356e4f339e9b1af2 100644 (file)
@@ -6,6 +6,8 @@
 slapo-auditlog \- Audit Logging overlay to slapd
 .SH SYNOPSIS
 ETCDIR/slapd.conf
+.TP
+ETCDIR/slapd.d
 .SH DESCRIPTION
 The Audit Logging overlay can be used to record all changes on a given
 backend database to a specified log file. Changes are logged as standard
@@ -26,10 +28,38 @@ directive.
 .B auditlog <filename>
 Specify the fully qualified path for the log file.
 .TP
-.B
+.B olcAuditlogFile <filename>
+For use with 
+.B cn=config
+.SH EXAMPLE
+The following LDIF could be used to add this overlay to
+.B cn=config 
+(adjust to suit)
+.LP
+.RS
+.nf
+dn: cn=module{0},cn=config
+changetype: modify
+add: olcModuleLoad
+olcModuleLoad: {2}auditlog.la
+
+dn: olcOverlay=auditlog,olcDatabase={1}hdb,cn=config 
+changetype: add
+objectClass: olcOverlayConfig
+objectClass: olcAuditLogConfig
+olcOverlay: auditlog
+olcAuditlogFile: /tmp/auditlog.ldif
+.fi
+.RE
+.LP
+.LP
 .SH FILES
 .TP
 ETCDIR/slapd.conf
 default slapd configuration file
+.TP
+ETCDIR/slapd.d
+default slapd configuration directory
 .SH SEE ALSO
-.BR slapd.conf (5).
+.BR slapd.conf (5),
+.BR slapd-config(5).