Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
0d089621
Commit
0d089621
authored
Apr 15, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5440
parent
d831d315
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
0d089621
...
...
@@ -25,6 +25,7 @@ OpenLDAP 2.4.9 Engineering
Fixed slapd-bdb entryinfo state if db_lock fails (ITS#5455)
Fixed slapd-config attribute publishing (ITS#5383)
Fixed slapd-ldap connection handler (ITS#5404)
Fixed slapd-meta connections on error (ITS#5440)
Fixed slapo-auditlog unnecessary syscall (ITS#5441)
Fixed slapo-refint dnSubtreeMatch (ITS#5427)
Fixed slapo-refint global referential integrity (ITS#5428)
...
...
doc/man/man5/slapd-meta.5
View file @
0d089621
...
...
@@ -139,11 +139,12 @@ If set before any target specification, it affects all targets, unless
overridden by any per-target directive.
.TP
.B pseudoroot-bind-defer {
NO|yes
}
.B pseudoroot-bind-defer {
YES|no
}
This directive, when set to
.BR yes ,
causes the authentication to the remote servers with the pseudo-root
identity to be deferred until actually needed by subsequent operations.
Otherwise, all binds as the rootdn are propagated to the targets.
.TP
.B quarantine <interval>,<num>[;<interval>,<num>[...]]
...
...
servers/slapd/back-meta/config.c
View file @
0d089621
...
...
@@ -802,7 +802,7 @@ meta_back_db_config(
{
if
(
argc
!=
2
)
{
Debug
(
LDAP_DEBUG_ANY
,
"%s: line %d:
\"
[pseudo]root-bind-defer {
FALSE|tru
e}
\"
takes 1 argument
\n
"
,
"%s: line %d:
\"
[pseudo]root-bind-defer {
TRUE|fals
e}
\"
takes 1 argument
\n
"
,
fname
,
lineno
,
0
);
return
(
1
);
}
...
...
@@ -818,7 +818,7 @@ meta_back_db_config(
default:
Debug
(
LDAP_DEBUG_ANY
,
"%s: line %d:
\"
[pseudo]root-bind-defer {
FALSE|tru
e}
\"
: invalid arg
\"
%s
\"
.
\n
"
,
"%s: line %d:
\"
[pseudo]root-bind-defer {
TRUE|fals
e}
\"
: invalid arg
\"
%s
\"
.
\n
"
,
fname
,
lineno
,
argv
[
1
]
);
return
1
;
}
...
...
servers/slapd/back-meta/init.c
View file @
0d089621
...
...
@@ -99,6 +99,10 @@ meta_back_db_init(
return
-
1
;
}
/* set default flags */
mi
->
mi_flags
=
META_BACK_F_DEFER_ROOTDN_BIND
;
/*
* At present the default is no default target;
* this may change
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment