summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-10-10 22:41:02 -0400
committerRob Crittenden <rcritten@redhat.com>2012-10-10 20:24:10 -0400
commitea4f60b15a2743eb61f27ccd33d7bed17552eade (patch)
tree0328edc627d3ac06ca41464c7a0cae0a0ee4518c /ipaserver
parenta51b65d9d40fa09bf33d7dff875e5cba6d51d2d2 (diff)
downloadfreeipa-ea4f60b15a2743eb61f27ccd33d7bed17552eade.tar.gz
freeipa-ea4f60b15a2743eb61f27ccd33d7bed17552eade.tar.xz
freeipa-ea4f60b15a2743eb61f27ccd33d7bed17552eade.zip
Explicitly disable betxn plugins for the time being.
This should work with 389-ds-base 1.2.x and 1.3.0. Without other plugin changes 389-ds-base can deadlock. https://fedorahosted.org/freeipa/ticket/3046
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/dsinstance.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py
index 2c9832d02..b60335785 100644
--- a/ipaserver/install/dsinstance.py
+++ b/ipaserver/install/dsinstance.py
@@ -197,6 +197,7 @@ class DsInstance(service.Service):
self.step("configuring replication version plugin", self.__config_version_module)
self.step("enabling IPA enrollment plugin", self.__add_enrollment_module)
self.step("enabling ldapi", self.__enable_ldapi)
+ self.step("disabling betxn plugins", self.__disable_betxn)
self.step("configuring uniqueness plugin", self.__set_unique_attrs)
self.step("configuring uuid plugin", self.__config_uuid_module)
self.step("configuring modrdn plugin", self.__config_modrdn_module)
@@ -470,6 +471,9 @@ class DsInstance(service.Service):
def __add_referint_module(self):
self._ldap_mod("referint-conf.ldif")
+ def __disable_betxn(self):
+ self._ldap_mod("disable-betxn.ldif", self.sub_dict)
+
def __set_unique_attrs(self):
self._ldap_mod("unique-attributes.ldif", self.sub_dict)