mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-09 08:23:35 -05:00
Add backend directive
This commit is contained in:
parent
a8e804bf8f
commit
37c609d6b8
1 changed files with 19 additions and 6 deletions
|
|
@ -81,7 +81,7 @@ H3: Global Directives
|
|||
|
||||
Directives described in this section apply to all backends
|
||||
and databases unless specifically overridden in a backend or
|
||||
database definition. Arguments that should be replaced
|
||||
database definition. Arguments that should be replaced
|
||||
by actual text are shown in brackets {{EX:<>}}.
|
||||
|
||||
|
||||
|
|
@ -229,17 +229,30 @@ exceeded timelimit will be returned.
|
|||
|
||||
H3: General Backend Directives
|
||||
|
||||
Directives in this section apply only to the backend in which
|
||||
they are defined. They are supported by every type of backend.
|
||||
Backend directives apply to all databases instances of the
|
||||
same type and, depending on the directive, may be overridden
|
||||
by database directives.
|
||||
|
||||
H4: backend <type>
|
||||
|
||||
This directive marks the beginning of a backend definition.
|
||||
{{EX:<type>}} should be one of {{EX:ldbm}}, {{EX:shell}},
|
||||
{{EX:passwd}}, or other supported backend type.
|
||||
|
||||
|
||||
H3: General Database Directives
|
||||
|
||||
Directives in this section only apply to the database in which
|
||||
Directives in this section apply only to the database in which
|
||||
they are defined. They are supported by every type of database.
|
||||
|
||||
H4: database <databasetype>
|
||||
H4: database <type>
|
||||
|
||||
This directive marks the beginning of a new database instance
|
||||
definition. <databasetype> should be one of ldbm, shell, or
|
||||
passwd, depending on which backend will serve the
|
||||
database.
|
||||
definition.
|
||||
{{EX:<type>}} should be one of {{EX:ldbm}}, {{EX:shell}},
|
||||
{{EX:passwd}}, or other supported database type.
|
||||
|
||||
\Example:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue