diff options
author | Noriko Hosoi <nhosoi@redhat.com> | 2007-06-21 21:57:23 +0000 |
---|---|---|
committer | Noriko Hosoi <nhosoi@redhat.com> | 2007-06-21 21:57:23 +0000 |
commit | 6b13074c005e8d5881f4d76ebddf187e3137116f (patch) | |
tree | 5560363e8c9ba10d0eb9d4e6a89a248edadecb60 /ldap/admin | |
parent | dd4b9de117646b6c74f15089973cb923186037e0 (diff) | |
download | ds-6b13074c005e8d5881f4d76ebddf187e3137116f.tar.gz ds-6b13074c005e8d5881f4d76ebddf187e3137116f.tar.xz ds-6b13074c005e8d5881f4d76ebddf187e3137116f.zip |
Resolves: #244749
Summary: Configure Pass Thru Auth (comment #8, #9)
Description: 1) Introducing BaseVersion (*.inf files) via PACKAGE_BASE_VERSION
(configure.ac) to generate #.# format version number from #.#.#. The #.#
format version number is used in the jar file names
2) Updated Util.pm.in to include ACIs to the search result.
Diffstat (limited to 'ldap/admin')
-rw-r--r-- | ldap/admin/src/scripts/Util.pm.in | 2 | ||||
-rw-r--r-- | ldap/admin/src/slapd.inf.in | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ldap/admin/src/scripts/Util.pm.in b/ldap/admin/src/scripts/Util.pm.in index 2c3c283e..740cd39b 100644 --- a/ldap/admin/src/scripts/Util.pm.in +++ b/ldap/admin/src/scripts/Util.pm.in @@ -216,7 +216,7 @@ sub check_and_add_entry my $fresh = $context->[1]; my $verbose = $context->[2]; my @ctypes = $aentry->getValues("changetype"); - my $sentry = $conn->search($aentry->{dn}, "base", "(objectclass=*)"); + my $sentry = $conn->search($aentry->{dn}, "base", "(objectclass=*)", 0, ("*", "aci")); do { my $needtoadd; diff --git a/ldap/admin/src/slapd.inf.in b/ldap/admin/src/slapd.inf.in index bc84c6e6..140ff36d 100644 --- a/ldap/admin/src/slapd.inf.in +++ b/ldap/admin/src/slapd.inf.in @@ -46,6 +46,7 @@ Name= @capbrand@ Directory Server InstanceNamePrefix= Directory Server NickName= slapd Version= @PACKAGE_VERSION@ +BaseVersion= @PACKAGE_BASE_VERSION@ Compatible= 1.0 BuildNumber= @NQBUILD_NUM@ Description= @capbrand@ Directory Server |