<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=US-ASCII" http-equiv="Content-Type">
<title>
GitLab
</title>
<style>img {
max-width: 100%; height: auto;
}
</style>
</head>
<body>
<div class="content">
<h3>
Timo Aaltonen pushed to branch master
at <a href="https://salsa.debian.org/freeipa-team/389-ds-base">FreeIPA packaging / 389-ds-base</a>
</h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/4a55322c7bdb0b9ff57428ad0dc2e4d943572a69">4a55322c</a></strong>
<div>
<span>by Matus Honek</span>
<i>at 2020-06-02T16:16:09+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50746 - Add option to healthcheck to list all the lint reports
Bug Description:
Healthcheck lacks a way to find out what checks are available.
Fix Description:
Add dsctl healthcheck options to list available checks, known error
codes, and ability to run cehcks selectively. The checks are rather
hierarchically structured and in some cases matchable by patterns (by
use of asterisk).
Fixes https://pagure.io/389-ds-base/issue/50746
Author: Matus Honek <mhonek@redhat.com>
Review by: Mark, William, Simon (thanks for the patience!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/a0113b19cbe6f37774b639cbf4a644ab4944465f">a0113b19</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-02T10:28:24-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51118 - UI - improve modal validation when creating an instance
Description: Do not enable the "create" button until all the fields are
valid (DN's, port numbers, passwords, etc).
Improve layout and handling of optional database settings.
Add a json argument to dscreate so the UI can report any
failure text. Also improve error reporting in dscreate.
relates: https://pagure.io/389-ds-base/issue/51118
Reviewed by: firstyear & spichugi(Thanks!!)
Improve validation error messages
Fix allowed characters
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/1d99557541008b5a3484e9c025dd1a7241cecef2">1d995575</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-03T09:10:34+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51115 - enable samba3.ldif by default
Bug Description: Samba has an ldapsam module that allows
samba to authenticate via LDAP for ad-domain-less systems.
By enabling it by default this opens some easier out-of-the-box
integrations.
Fix Description: Enable it by default, and fix a type in 60samba.ldif
Already tested with replication and 60samba.ldif to ensure no conflict.
https://pagure.io/389-ds-base/issue/51115
Author: William Brown <william@blackhats.net.au>
Review by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/9a069355b1e4bd5947c52ae44cd079f030314356">9a069355</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-03T09:15:05+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51072 - improve autotune defaults
Bug Description: we have learnt that the CPU autotuning is too aggresive, potentially
decreasing throughput due to overhead in context switching and lock contention, and
that our memory tuning is not aggressive enough, at only 10% of the system memory.
Additionally, in containers, we are able to have access to different memory limits
and reservations, so we can choose to be even more forward in our selection.
Fix Description: Change thread tuning to match the number of threads available on
the system. Change memory tuning to 25% of system memory by default. Finally add
an environment variable to containers allowing more aggressive tuning to be
set DS_MEMORY_PERCENTAGE. Later this could be set to a higher default value.
https://pagure.io/389-ds-base/issue/51072
Author: William Brown <william@blackhats.net.au>
Review by: mreynolds, vashirov, tbordaz (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/b405a9091383b45cd80b3e97da64a7e0bdc59fa1">b405a909</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-03T12:23:58+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 137 - Implement EntryUUID plugin
Bug Description: This implements EntryUUID - A plugin that generates
uuid's on attributes, which can be used by external applications to
associate an entry uniquely.
Fix Description: This change is quite large as it contains multiple parts:
* Schema for entryuuid.
ldap/schema/02common.ldif
ldap/schema/03entryuuid.ldif
* Documentation of the plugin design
src/README.md
* A rust plugin api.
src/slapi_r_plugin/Cargo.toml
src/slapi_r_plugin/README.md
src/slapi_r_plugin/build.rs
src/slapi_r_plugin/src/backend.rs
src/slapi_r_plugin/src/ber.rs
src/slapi_r_plugin/src/constants.rs
src/slapi_r_plugin/src/dn.rs
src/slapi_r_plugin/src/entry.rs
src/slapi_r_plugin/src/error.rs
src/slapi_r_plugin/src/init.c
src/slapi_r_plugin/src/lib.rs
src/slapi_r_plugin/src/log.rs
src/slapi_r_plugin/src/macros.rs
src/slapi_r_plugin/src/pblock.rs
src/slapi_r_plugin/src/plugin.rs
src/slapi_r_plugin/src/search.rs
src/slapi_r_plugin/src/syntax_plugin.rs
src/slapi_r_plugin/src/task.rs
src/slapi_r_plugin/src/value.rs
* An entry uuid syntax plugin, that has functional indexing
src/plugins/entryuuid_syntax/Cargo.toml
src/plugins/entryuuid_syntax/src/lib.rs
* A entry uuid plugin that generates entryuuid's and has a fixup task.
src/plugins/entryuuid/Cargo.toml
src/plugins/entryuuid/src/lib.rs
* Supporting changes in the server core to enable and provide apis for the plugins.
ldap/servers/slapd/config.c
ldap/servers/slapd/entry.c
ldap/servers/slapd/fedse.c
* A test suite for for the entryuuid plugin
dirsrvtests/tests/data/entryuuid/localhost-userRoot-2020_03_30_13_14_47.ldif
dirsrvtests/tests/suites/entryuuid/basic_test.py
* Supporting changes in lib389
src/lib389/lib389/_constants.py
src/lib389/lib389/backend.py
src/lib389/lib389/instance/setup.py
src/lib389/lib389/plugins.py
src/lib389/lib389/tasks.py
* Changes to support building the plugins
Makefile.am
configure.ac
* Execution of cargo fmt on the tree, causing some clean up of files.
src/Cargo.lock
src/Cargo.toml
src/librnsslapd/build.rs
src/librnsslapd/src/lib.rs
src/librslapd/Cargo.toml
src/librslapd/build.rs
src/librslapd/src/lib.rs
src/libsds/sds/lib.rs
src/libsds/sds/tqueue.rs
src/slapd/src/error.rs
src/slapd/src/fernet.rs
src/slapd/src/lib.rs
https://pagure.io/389-ds-base/issue/137
Author: William Brown <william@blackhats.net.au>
Review by: mreynolds, lkrispenz (Thanks)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/31e132a54b678cf12297a72bd0ddd15db9319051">31e132a5</a></strong>
<div>
<span>by Barbora Smejkalova</span>
<i>at 2020-06-03T08:22:43+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50889 - Extract pem files into a private namespace
Description:
Created test for checking if certs and private key in pem format are stored
in private namespace and not under 'nsslapd-certdir' directory.
Relates: https://pagure.io/389-ds-base/issue/50889
Reviewed by: firstyear, tbordaz, vashirov (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/e8f510e969284e0c0d62926c404540db66c21587">e8f510e9</a></strong>
<div>
<span>by Barbora Smejkalova</span>
<i>at 2020-06-03T06:49:32+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50545 - Port remaining legacy tools to new python CLI
Description:
Created test that checks output syntax for dbmon to make sure
it did not fail with error.
Relates: https://pagure.io/389-ds-base/issue/50545
Reviewed by: firstyear, mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/4f2f3c37006f60b4c5140f58969908c3860641e9">4f2f3c37</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-04T00:12:49+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51034 - labeledURIObject
Bug Description: We are missing part of rfc2079, the labeledURIObject
Fix Description: At the schema as defined in the RFC
https://pagure.io/389-ds-base/issue/51034
Author: William Brown <william@blackhats.net.au>
Review by: ???
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/75c8de1e59d1f613599754690594e77e3a2b4fb0">75c8de1e</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-04T10:25:10-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51132 - Winsync setting winSyncWindowsFilter not working as expected
Bug Description: When processing updates from AD we search AD using a filter,
and this filter can be customized via the attribute setting:
winSyncWindowsFilter. However, after setting a custom filter
replication appears to stop working as expected. New entries
that match the filter are replicated to DS, but not updates
to these entries. The problem is that when dirsync sends
updates, it is just a partial entry - only containing the
attributes that changed. Then the server checks the filter
again on the returned entry, but if it's just a mod update then
the entry is missing most of its attributes, and the filter
check fails and the entry is not updated on DS.
Fix Description: Do not check the filter on the returned entries when processing
incremental updates as the fitler test was already done when
gathering the candidates.
relates: https://pagure.io/389-ds-base/issue/51132
Reviewed by: tbordaz & firstyear (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/ac54e069ceb2d928805d877659aa0b4e7b10da88">ac54e069</a></strong>
<div>
<span>by Viktor Ashirov</span>
<i>at 2020-06-05T01:58:49+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50781 - Make building cockpit plugin optional
Bug Description:
Currently building 389-ds involves building cockpit-389-ds too,
which is not always desired.
Fix Description:
Introduce a new configure parameter --enable-cockpit, which is on by default.
Fixes: https://pagure.io/389-ds-base/issue/50781
Doc impact: no
Reviewed by: ???
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/05e3407ef80b685444a266a090af62b84ea78d9a">05e3407e</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-05T11:58:20+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 137 - fix compiler warning
Bug Description: Fix a compiler warning
Fix Description: -
https://pagure.io/389-ds-base/issue/137
https://pagure.io/389-ds-base/pull-request/50970#comment-122059
Author: William Brown <william@blackhats.net.au>
Review by: ???
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/af87048042b3b8bd65f26f32e9c257dc8a881b4f">af870480</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-08T11:13:14-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51136 - dsctl and dsidm do not errors correctly when using JSON
Description: dsctl and dsidm were not returning errors in a JSON object
when the JSON CLI option is requested. This breaks the UI
when errors occur.
fixes: https://pagure.io/389-ds-base/issue/51136
Reviewed by: firstyear & spichugi(Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/ac58ddf3e4c3a4f0388c56b262da8f7eeb11e230">ac58ddf3</a></strong>
<div>
<span>by Simon Pichugin</span>
<i>at 2020-06-09T18:36:25+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51100 - Correct numSubordinates value for cn=monitor
Bug Description: numSubordinates for cn=monitor shows 4
while there are 3 child entries are present.
Fix Description: Ignore easter egg entry while increasing
numSubordinates count.
https://pagure.io/389-ds-base/issue/51100
Reviewed by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/e9626cc7ace9ecd4a4f9cf49cf8087cff3bb2720">e9626cc7</a></strong>
<div>
<span>by Viktor Ashirov</span>
<i>at 2020-06-10T13:26:58+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50781 - Make building cockpit plugin optional
Bug description:
Cockpit plugin should be optional, but not disabled by default.
Fix description:
Change the default to COCKPIT_ON = 1
Relates: https://pagure.io/389-ds-base/issue/50781
Reviewed by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/3ddcc62065470ea7230109f892449e0ab65c9e00">3ddcc620</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-11T15:47:43-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50912 - pwdReset can be modified by a user
Description: The attribute "pwdReset" should only be allowed to be set by the
server. Update schema definition to include NO-USER-MODIFICATION
relates: https://pagure.io/389-ds-base/issue/50912
Reviewed by: mreynolds(one line commit rule)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/4cfa3745e864e5a7fbf61c2d7cde005b5fe1eff5">4cfa3745</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-11T23:45:20+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51140 - missing ifdef
Bug Description: entryuuid syntax was added when rust is
not enabled.
Fix Description: Add the missing ifdef
https://pagure.io/389-ds-base/issue/51140
Author: William Brown <william@blackhats.net.au>
Review by: ???
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/dc7bf4a767a6aec72a664e99677f0075ab89ac2c">dc7bf4a7</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-15T11:01:02-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51072 - Set the default minimum worker threads
Description: Testing has shown that using current number of CPU cores
to set the thread number gives the best performance, but
when there are expensive operations total throughput drops.
We still need a minimum number of workers threads to handle
a wide range of operations. We decided for now that the
minimum should be 16 workers.
relates: https://pagure.io/389-ds-base/issue/51072
Reviewed by: tbordaz & firstyear (Thanks!!)
Define MAX and MIN threads, and improve logging
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/f75fd1aaa671c9300cb76f005cdb814ec563e4f2">f75fd1aa</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-15T11:37:39-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50791 - Healthcheck should look for notes=A/F in access log
Description: Add checks for notes=A (fully unindexed search) and
notes=F (Unknown attribute in search filter) in the
current access log.
relates: https://pagure.io/389-ds-base/issue/50791
Reviewed by: firstyear(Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/2ccd0bed4e60e44303d5f1cf96bd30572ffea85b">2ccd0bed</a></strong>
<div>
<span>by Thierry Bordaz</span>
<i>at 2020-06-15T18:00:07+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 49859 - A distinguished value can be missing in an entry
Bug description:
According to RFC 4511 (see ticket), the values of the RDN attributes
should be present in an entry.
With a set of replicated operations, it is possible that those values
would be missing
Fix description:
MOD and MODRDN update checks that the RDN values are presents.
If they are missing they are added to the resulting entry. In addition
the set of modifications to add those values are also indexed.
The specific case of single-valued attributes, where the final and unique value
can not be the RDN value, the attribute nsds5ReplConflict is added.
https://pagure.io/389-ds-base/issue/49859
Reviewed by: Mark Reynolds, William Brown
Platforms tested: F31
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/a1c8e126468738ffca9646f71d62417db56eeb8c">a1c8e126</a></strong>
<div>
<span>by Viktor Ashirov</span>
<i>at 2020-06-16T20:47:17+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 49761 - Fix CI tests
Fix Description:
* Remove checks for some of the expected logs that are no longer present after
https://pagure.io/389-ds-base/issue/51076
* Use a fixture for disabling/enabling access log buffering
Relates: https://pagure.io/389-ds-base/issue/49761
Reviewed by: spichugi (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/7e1d80f63c0254ddec697f684057bb899b7e8aad">7e1d80f6</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-17T01:39:05+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51131 - improve mutex alloc in conntable
Bug Description: We previously did delayed allocation
of mutexs, which @tbordaz noted can lead to high usage
of the pthread mutex init routines. This was done under
the conntable lock, as well as cleaning the connection
Fix Description: rather than delayed allocation, we
initialise everything at start up instead, which means
that while startup may have a delay, at run time we have
a smaller and lighter connection allocation routine,
that is able to release the CT lock sooner.
https://pagure.io/389-ds-base/issue/51131
Author: William Brown <william@blackhats.net.au>
Review by: ???
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/327147cf7b5c6dbfbfae107e823d24183363e418">327147cf</a></strong>
<div>
<span>by Simon Pichugin</span>
<i>at 2020-06-17T13:35:31+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50984 - Memory leaks in disk monitoring
Description: Fix the rest of the leaks in disk monitoring
which are present when we shutdown while being below half
of the threshold (at the start-up in main.c).
Free directories, sockets and ports before going to cleanup.
https://pagure.io/389-ds-base/issue/50984
Reviewed by: mhonek, tbordaz (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/f97a86af2895d6ba040fa46d4bb9fb6ad95be2dc">f97a86af</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-18T00:16:42+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51159 - dsidm ou delete fails
Bug Description: delete ou would fail with a stack
trace due to incorrect variable args
Fix Description: use args.dn
https://pagure.io/389-ds-base/issue/51159
Author: William Brown <william@blackhats.net.au>
Review by: ???
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/c6405714f6226961ceda9fff1650b1ec3a412734">c6405714</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-18T10:23:20-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51155 - Fix OID for sambaConfig objectclass
Description: The wrong OID was set for sambaConfig objectclass
relates: https://pagure.io/389-ds-base/issue/51155
Reviewed by: mreynolds & tbordaz
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/3a964c2d3451ea35d277cc3763e967fe1c9cd187">3a964c2d</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-18T17:03:09-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51144 - dsctl fails with instance names that contain slapd-
Bug Description: If an instance name contains 'slapd-' the CLI breaks:
slapd-test-slapd
Fix Description: Only strip off "slapd-" from the front of the instance
name.
relates: https://pagure.io/389-ds-base/issue/51144
Reviewed by: firstyear(Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/c20cb6733919d81de69ab9b8c547504f404c1605">c20cb673</a></strong>
<div>
<span>by Simon Pichugin</span>
<i>at 2020-06-18T23:51:53+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 49999 - rpm.mk build-cockpit should clean cockpit_dist first
Description: make -f rpm.mk rpms should always generate this directory
from scratch: src/cockpit/389-console/cockpit_dist
https://pagure.io/389-ds-base/issue/49999
Reviewed by: spichugi (one-line rule)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/b59faa43518613e2f0a893c5a7491e1801d8be5b">b59faa43</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-19T11:24:10+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51161 - fix SLE15.2 install issps
Bug Description: On SLE15.2 the hostname is almost always set
incorrectly which can break the install. Newer versions of
systemd encode utf8 in their command output that trips up
the log subsystem.
Fix Description:
We have to set SER_HOST rather than using the default which is
socket.gethostname() from init.py.
Discard the special utf8 encodings in the log output for systemd
https://pagure.io/389-ds-base/issue/51161
Author: William Brown <william@blackhats.net.au>
Review by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/8f3887e08cb77c0d023a572462832b7e042b01ed">8f3887e0</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-06-22T14:16:31+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 50544 - OpenLDAP syncrepl compatability
Bug Description: Some customers have asked for the ability to sync
openldap fro 389-ds in a read only mode. OpenLDAP's syncrepl
functionality is slightly different to what our module expected,
requiring changes to be made.
Fix Description: This fixes a number of syncrepl issues within
our plugin, works around a number of deviations from OpenLDAP's
syncrepl client, adds tests, and the needed schema to allow
OpenLDAP to sync from 389-ds.
Outstanding issue is that when the EntryUUID plugin is enabled, it
can confuse OpenLDAP, so a subsequent PR will address that issue.
Note, the provided tests require a fix to python-ldap, so you may
not be able to run these tests yet. See:
https://github.com/python-ldap/python-ldap/pull/351
https://pagure.io/389-ds-base/issue/50544
Author: William Brown <william@blackhats.net.au>
Review by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/16e47bff818e49d0752fc1bdb970cd49ab907cd9">16e47bff</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-22T09:02:00-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51166 - Log an error when a search is fully unindexed
Bug Description: Some plugins can trigger very expensive internal searches
that can exhaust the bdb db_locks. It is very difficult
to track these down.
Fix description: Log a message to the errors log when any search (internal or not)
is fully unindexed and provide the search details. This will
allow an admin to identify and fix indexing issues.
relates: https://pagure.io/389-ds-base/issue/51166
Reviewed by: firstyear & tbordaz(Thanks!!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/2813d3d0d524488bea30412a9289e0273f049936">2813d3d0</a></strong>
<div>
<span>by Anuj Borah</span>
<i>at 2020-06-22T19:25:09+05:30</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue:50860 - Port Password Policy test cases from TET to python3 part2
Bug Description: CI test - Port Password Policy test cases from TET to python3 part2
Relates: https://pagure.io/389-ds-base/issue/50860
Author: aborah
Reviewed by: Viktor Ashirov
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/fe48b604813f36ce2ca0d148c5f43949f4580c61">fe48b604</a></strong>
<div>
<span>by Barbora Smejkalova</span>
<i>at 2020-06-22T16:15:24+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50873 - Fix issues with healthcheck tool
Description:
I finished remaining tests for healthcheck tool.
I moved some of the tests to separate files because one large file was becoming messy.
Also the test in health_sync_test.py is separate because it is time sensitive to reproduce.
Running it with other tests in one file can cause delay and not catching the error code.
Created requirements.txt to install libfaketime.
Updated topologies.py for LogCapture.
Relates: https://pagure.io/389-ds-base/issue/50873
Reviewed by: vashirov (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/526b542ba116c02706ebf0a420f61d117f0407d5">526b542b</a></strong>
<div>
<span>by Simon Pichugin</span>
<i>at 2020-06-23T01:36:35+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51157 - Reindex task may create abandoned index file
Bug Description: Recreating an index for the same attribute but changing
the case of for example 1 letter, results in abandoned indexfile.
Fix Decsription: Add a test case to a newly created 'indexes' test suite.
When we remove the index config from the backend, - remove the attribute
info from LDBM instance attributes.
https://pagure.io/389-ds-base/issue/51157
Reviewed by: firstyear, mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/a64d6be1a11eea4129e0c02f07fa79aa9bfa0a38">a64d6be1</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-23T01:27:01+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 49256 - log warning when thread number is very different from autotuned value
Description: To help prevent customers from setting incorrect values for
the thread number it would be useful to warn them that the
configured value is either way too low or way too high.
relates: https://pagure.io/389-ds-base/issue/49256
Reviewed by: firstyear(Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/a99cd7c7f4571bb9948f58ae1bb8e84285d0b5df">a99cd7c7</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-23T11:35:30-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51169 - UI - attr uniqueness - selecting empty subtree crashes cockpit
Description: When processing the typeAheadChange we need to check for a empty
string before treating the array like a list of objects.
Also updated README with contribution instructions
relates: https://pagure.io/389-ds-base/issue/51169
Reviewed by: spichugi(Thanks!)
Improve handling of typeAhead values.
In some cases its an array of strings, and in some cases it's array of objects
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/0f8605a765d723a6c7ec9406e9bbdb5a77fcdc19">0f8605a7</a></strong>
<div>
<span>by Simon Pichugin</span>
<i>at 2020-06-23T19:28:59+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50696 - Fix Allowed and Denied Ciphers lists - WebUI
Description: When we add a cipher to an Allowed list we should
not be allowed to add the same cipher to a Denied list.
Also, show a warning when we do an action which requires a restart.
https://pagure.io/389-ds-base/issue/50696
Reviewed by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/d4f5dce72686fb5753fa05f3b888426edaa175a4">d4f5dce7</a></strong>
<div>
<span>by Anuj Borah</span>
<i>at 2020-06-24T09:43:50+05:30</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue: 50860 - Port Password Policy test cases from TET to python3 final
Bug Description: Port Password Policy test cases from TET to python3 final
Fixes: https://pagure.io/389-ds-base/issue/50860
Author: aborah
Reviewed by: Simon Pichugin
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/32593df1c4ac1b8237fa09a0fdafa0a09cf67eaf">32593df1</a></strong>
<div>
<span>by Anuj Borah</span>
<i>at 2020-06-24T07:44:40+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue:51142 - Port manage Entry TET suit to python 3 part 1
Bug Description: Port manage Entry TET suit to python 3 part 1
Relates: https://pagure.io/389-ds-base/issue/51142
Author: aborah
Reviewed by: Viktor Ashirov
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/0a71c3db0f5a6a09f0dd3d736cd173aefe582613">0a71c3db</a></strong>
<div>
<span>by Anuj Borah</span>
<i>at 2020-06-24T07:53:31+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue: 51070 - Port Import TET module to python3 part2
Bug Description: Port Import TET module to python3 part2
Fixes: https://pagure.io/389-ds-base/issue/51070
Author: aborah
Reviewed by: Viktor Ashirov
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/6a2750c025d9d20715d83ccb87c1eb4d8f2e3527">6a2750c0</a></strong>
<div>
<span>by Anuj Borah</span>
<i>at 2020-06-24T07:58:28+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue : 49761 - Fix CI test suite issues ( Port remaning acceptance test suit part 1)
Bug Description: Port remaning acceptance test suit part 1
Relates/Fixes: https://pagure.io/389-ds-base/issue/49761
Author: aborah
Reviewed by: Viktor Ashirov
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/3246fe7930771c4deb82d979245f1810560f5c40">3246fe79</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-24T16:55:59+00:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51165 - add new access log keywords for wtime and optime
Description: In addition to the "etime" stat in the access we can also
add the time the operation spent in the work queue, and
how long the actual operation took. We now have "wtime"
and "optime" to track these stats in the access log.
Also updated logconf for notes=F (related to a different
ticket), and stats for wtime and optime.
relates: https://pagure.io/389-ds-base/issue/51165
Reviewed by: ?
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/98a8287e4fa1c2dd8cc1f4712b13440346464a5f">98a8287e</a></strong>
<div>
<span>by Barbora Smejkalova</span>
<i>at 2020-06-25T13:01:50+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50545 - Port remaining legacy tools to new python CLI
Description:
Created sanity tests for repl-monitor, dbverify, ldifgen (dbgen) and fixup task
into separate files for each tool.
All tests check output syntax to make sure the tool did not fail with error.
Tests for dbgen create ldif files, that are imported to database and
then check if entries are imported correctly.
Relates: https://pagure.io/389-ds-base/issue/50545
Reviewed by: spichugi (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/20e24cc03fc1c06d108555b6c394092e24bb3cc9">20e24cc0</a></strong>
<div>
<span>by Simon Pichugin</span>
<i>at 2020-06-26T02:00:31+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51188 - db2ldif crashes when LDIF file can't be accessed
Bug Description: db2ldif crashes when we set '-a LDIF_PATH' to a place that
can't be accessed by the user (dirsrv by default)
Fix Description: Don't attempt to close DB if we bail after a failed
attempt to open LDIF file.
https://pagure.io/389-ds-base/issue/51188
Reviewed by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/c48f4d98db2435e2ee436834089f20ad405d1cc2">c48f4d98</a></strong>
<div>
<span>by Akshay Adhikari</span>
<i>at 2020-06-26T18:30:57+05:30</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50928 - Unable to create a suffix with countryName either via dscreate or the admin console
Description: Added a test case to create a suffix with countryName and all other RDN attributes
via dscreate, also added a negative scenario.
Relates: https://pagure.io/389-ds-base/issue/50928
Reviewed by: vashirov, mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/f771ff7e6ea97641d1abfc5816e9631b699454b3">f771ff7e</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-06-28T22:05:23-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51165 - add more logconv stats for the new access log keywords
Description: Add "average" stats for wtime, optime, and etime
relates: https://pagure.io/389-ds-base/issue/51165
Reviewed by: firstyear(Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/91c8ad41d257aaa258829044386e017531f40294">91c8ad41</a></strong>
<div>
<span>by Thierry Bordaz</span>
<i>at 2020-06-29T13:46:09+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 50980 - fix foo_filter_rewrite
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/567e8312d754df238d685828369179f7e624686b">567e8312</a></strong>
<div>
<span>by Viktor Ashirov</span>
<i>at 2020-06-30T18:28:35+02:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50840 - Fix test docstrings metadata
Bug Description:
Some tests have an incorrect metadata in the docstrings. This prevents
the import of the test cases in the test case management system.
Fix Description:
Update the metadata:
* Add missing test tier markers
* Fix missing newline between the short description and :id: token.
* Update test descriptions
* Fix aci tests so that the correct test case name is used in the
aci description
* Fix all warnings and errors reported by docutils parser
Fixes: https://pagure.io/389-ds-base/issue/50840
Reviewed by: mreynolds (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/36d61e9a8a1bef06528fad332074b8c58f568ce0">36d61e9a</a></strong>
<div>
<span>by Akshay Adhikari</span>
<i>at 2020-07-01T15:24:14+05:30</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 50840 - Fix test docstrings metadata-1
Fix Description: Updated the metadata
Relates: https://pagure.io/389-ds-base/issue/50840
Reviewed by: vashirov
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/53f921816bde65797f0c7af776c943823c4d002a">53f92181</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-07-01T09:07:37-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51192 - Add option to reject internal unindexed searches
Bug Description: Some plugins can perform unindexed searches, and under the
right conditions this can cause problems like exhausting DB locks.
The setting "nsslapd-require-index" does not apply to internal
searches, so there is no way to prevent these searches from
occuring.
Fix Description: Add a new database setting "nsslapd-require-internalop-index"
that rejects an internal unindexed searches.
Also found during testing that when the RI plugin fails that
it does not set the proper result error code.
relates: https://pagure.io/389-ds-base/issue/51192
Reviewed by: firstyear, spichugi & tbordaz (Thanks!!!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/5cc73845fda757c182debe91d752e4bc2578c39f">5cc73845</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-07-01T23:08:57-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Issue 51187 - UI - stop importing Cockpit's PF css
Bug Description: Cockpit has deprecated its patternfly css, so plugins
need to provide their own.
Fix Description: Used the same process cockpit-podman used. Was able to
consolidate the our CSS files so we don't have to ship
ds.css and branding.css. This also allowed us to remove
all the ds.css imports for almost every jsx file.
Special thanks to Martin Pitt for helping with this patch!
relates: https://pagure.io/389-ds-base/issue/51187
Reviewed by: spichugi(Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/017fda070b86844d4860041a6e42ab12d7588836">017fda07</a></strong>
<div>
<span>by William Brown</span>
<i>at 2020-07-03T09:24:44+10:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Ticket 51175 - resolve plugin name leaking
Bug Description: Previously pblock.c assumed that all plugin
names were static c strings. Rust can't create static C
strings, so these were intentionally leaked.
Fix Description: Rather than leak these, we do a dup/free
through the slapiplugin struct instead, meaning we can use
ephemeral, and properly managed strings in rust. This does not
affect any other existing code which will still handle the
static strings correctly.
https://pagure.io/389-ds-base/issue/51175
Author: William Brown <william@blackhats.net.au>
Review by: mreynolds, tbordaz (Thanks!)
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/318a3ce0c721ce217fc166b69e3457ad6ee0fb98">318a3ce0</a></strong>
<div>
<span>by Mark Reynolds</span>
<i>at 2020-07-08T17:01:34-04:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Bump version to 1.4.4.4
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/26254f3336a943ee31744a96fe2196bda35851c6">26254f33</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-14T13:58:31+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">watch: Update upstream git repo url.
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/d87aa88b2bac800aac307ce39489bf27e901ed66">d87aa88b</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-14T14:04:19+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">Merge branch 'upstream'
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/49d9c6c716ce8ea43db1fe3b9605bda73676cff6">49d9c6c7</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-14T14:10:24+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">bump the version
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/99853049736ca99bab5a8ecf3160595d9ab4f96d">99853049</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-22T09:00:12+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">control: Add python3-dateutil to build-depends.
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/59af6ae4f93374ade1729dbedfa1ba961fc989c9">59af6ae4</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-22T09:05:44+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">copyright: Drop duplicate globbing patterns.
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/05ae503bf787b7acb42fa5866430718d7690913a">05ae503b</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-22T09:12:20+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">lintian: Drop obsolete overrides.
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/a382e5fd7fcd79f3658d0a87b4199895ab821f2d">a382e5fd</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-22T09:19:12+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">postinst: Drop obsolete rule to upgrade the instances.
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/8d01d3a664f7fc5f242a4cb2cd52dd3f5c95648f">8d01d3a6</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-22T09:23:15+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">prerm: Use dsctl instead of remove-ds.
</pre>
</li>
<li>
<strong><a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/commit/583b0f85c29bcd0d85f15ff7371c19480e28e31c">583b0f85</a></strong>
<div>
<span>by Timo Aaltonen</span>
<i>at 2020-09-22T09:23:48+03:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap; margin: 0;">releasing package 389-ds-base version 1.4.4.4-1
</pre>
</li>
</ul>
<h4>30 changed files:</h4>
<ul>
<li class="file-stats">
<a href="#ded60a528711ca33b862a1e20fe7fa9a23f24847">
<span class="new-file">
+
LICENSE.openldap
</span>
</a>
</li>
<li class="file-stats">
<a href="#d5b4de16d947214ec306bd57bed1bd23a939b5f9">
Makefile.am
</a>
</li>
<li class="file-stats">
<a href="#d7e560a1b9a915cc82a4a544b31706fd6db5f6fd">
VERSION.sh
</a>
</li>
<li class="file-stats">
<a href="#87db583be5c13c1f7b3c958b10e03d67b6a2ca06">
configure.ac
</a>
</li>
<li class="file-stats">
<a href="#cf2ee7ea3d33430dbb433a756f96cd3a1ce6ff0c">
<span class="deleted-file">
−
debian/389-ds-base-libs.lintian-overrides
</span>
</a>
</li>
<li class="file-stats">
<a href="#fa073a25a4d01cb9024956c8d08f4bcd72c2bb98">
debian/389-ds-base.lintian-overrides
</a>
</li>
<li class="file-stats">
<a href="#08e8ae74f105152d6f4a466ce2c0354f21fb448a">
debian/389-ds-base.postinst
</a>
</li>
<li class="file-stats">
<a href="#cf66a52a98a0d21881ace4a11f8a9faf98153418">
debian/389-ds-base.prerm
</a>
</li>
<li class="file-stats">
<a href="#9c96da0e9f91d7d8937b69b524702c106258f0d1">
debian/changelog
</a>
</li>
<li class="file-stats">
<a href="#58ef006ab62b83b4bec5d81fe5b32c3b4c2d1cc2">
debian/control
</a>
</li>
<li class="file-stats">
<a href="#adb7f75f79e3bb85eb62912a2904c5d24af878fb">
debian/copyright
</a>
</li>
<li class="file-stats">
<a href="#68ef9f98c01c7eecd4c605cc26048a06f3304b79">
debian/watch
</a>
</li>
<li class="file-stats">
<a href="#3208d6460f8bc60f8453402b75153441b611f56e">
<span class="new-file">
+
dirsrvtests/requirements.txt
</span>
</a>
</li>
<li class="file-stats">
<a href="#8c085f954355ef4ed4319eb7c6effaa5eee21c26">
<span class="new-file">
+
dirsrvtests/tests/data/entryuuid/localhost-userRoot-2020_03_30_13_14_47.ldif
</span>
</a>
</li>
<li class="file-stats">
<a href="#ad0df7100163bb8ecc0bcfb48c2d9e17d6cc4975">
dirsrvtests/tests/suites/acl/acivattr_test.py
</a>
</li>
<li class="file-stats">
<a href="#18c7f8b18bde0a44780cd64ef8ecd2105b6d5bd7">
dirsrvtests/tests/suites/acl/acl_test.py
</a>
</li>
<li class="file-stats">
<a href="#8f14e625d499b4ef081654dc274b81ebd5fc1639">
dirsrvtests/tests/suites/acl/deladd_test.py
</a>
</li>
<li class="file-stats">
<a href="#57fb4f8e74a2d6f58bc4130104a221447583360d">
dirsrvtests/tests/suites/acl/enhanced_aci_modrnd_test.py
</a>
</li>
<li class="file-stats">
<a href="#49f67c1802f10dcca396f03bbb6d9ca0a2bf94a2">
dirsrvtests/tests/suites/acl/keywords_test.py
</a>
</li>
<li class="file-stats">
<a href="#e47af2c035c17748a2cb533e0d98680df9bc440c">
dirsrvtests/tests/suites/acl/misc_test.py
</a>
</li>
<li class="file-stats">
<a href="#2f2143b319178dc07a9fb7a78159b57ac22d4b84">
dirsrvtests/tests/suites/acl/modify_test.py
</a>
</li>
<li class="file-stats">
<a href="#4300a92e5ff985e2b073f33967785259fd5ad6cc">
dirsrvtests/tests/suites/acl/modrdn_test.py
</a>
</li>
<li class="file-stats">
<a href="#24fe4c6b913095c7efb563a5e2dff130cd64845b">
dirsrvtests/tests/suites/acl/search_real_part2_test.py
</a>
</li>
<li class="file-stats">
<a href="#155da4baddfb019eec3c1409d3fb81f39a5b5baf">
dirsrvtests/tests/suites/acl/search_real_part3_test.py
</a>
</li>
<li class="file-stats">
<a href="#415e82d82416832970d7162101bea49cd4c6b636">
dirsrvtests/tests/suites/acl/search_real_test.py
</a>
</li>
<li class="file-stats">
<a href="#93a51749f56ce1f41ba776252af6cf439da64c74">
dirsrvtests/tests/suites/acl/selfdn_permissions_test.py
</a>
</li>
<li class="file-stats">
<a href="#fe7c8bf586c0c663b8394617267a3e6b9ffe5507">
dirsrvtests/tests/suites/acl/valueacl_part2_test.py
</a>
</li>
<li class="file-stats">
<a href="#f807116d8f610ac0c7ad3bf308883757e760f031">
dirsrvtests/tests/suites/acl/valueacl_test.py
</a>
</li>
<li class="file-stats">
<a href="#97b169f8f6fe5df64278ff0b2911a9ca871230ce">
dirsrvtests/tests/suites/attr_encryption/attr_encryption_test.py
</a>
</li>
<li class="file-stats">
<a href="#3e1a8b47b38101330b69f73be793efdd7864cdb0">
dirsrvtests/tests/suites/automember_plugin/basic_test.py
</a>
</li>
</ul>
<h5>The diff was not included because it is too large.</h5>
</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #777;">
—
<br>
<a href="https://salsa.debian.org/freeipa-team/389-ds-base/-/compare/17586c424ab4eceefdca14cd61bb10510e8f0fe6...583b0f85c29bcd0d85f15ff7371c19480e28e31c">View it on GitLab</a>.
<br>
You're receiving this email because of your account on salsa.debian.org.
If you'd like to receive fewer emails, you can
adjust your notification settings.
</p>
</div>
</body>
</html>