mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Do not force named connections on upgrades
We used to set connections argument for bind-dyndb-ldap even when the attribute was not in named.conf. This is not necessary as the bind-dyndb-ldap plugin chooses a sane default instead of us.
This commit is contained in:
parent
7a2d3804af
commit
c4ab8dae35
@ -383,7 +383,7 @@ def named_enable_psearch():
|
||||
# "connections" option, bail out
|
||||
pass
|
||||
else:
|
||||
if connections is None or connections < minimum_connections:
|
||||
if connections is not None and connections < minimum_connections:
|
||||
try:
|
||||
bindinstance.named_conf_set_directive('connections',
|
||||
minimum_connections)
|
||||
|
Loading…
Reference in New Issue
Block a user