summaryrefslogtreecommitdiffstats
path: root/ipaserver/install
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install')
-rw-r--r--ipaserver/install/dsinstance.py4
-rw-r--r--ipaserver/install/replication.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py
index ed60c6f8b..d4f0683c0 100644
--- a/ipaserver/install/dsinstance.py
+++ b/ipaserver/install/dsinstance.py
@@ -219,6 +219,7 @@ class DsInstance(service.Service):
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)
+ self.step("enabling entryUSN plugin", self.__enable_entryusn)
self.step("creating indices", self.__create_indices)
self.step("configuring ssl for ds instance", self.__enable_ssl)
self.step("configuring certmap.conf", self.__certmap_conf)
@@ -357,6 +358,9 @@ class DsInstance(service.Service):
# TODO: roll back here?
logging.critical("Failed to restart the directory server. See the installation log for details.")
+ def __enable_entryusn(self):
+ self._ldap_mod("entryusn.ldif")
+
def __add_memberof_module(self):
self._ldap_mod("memberof-conf.ldif")
diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py
index 7b4e903b4..340a82ef3 100644
--- a/ipaserver/install/replication.py
+++ b/ipaserver/install/replication.py
@@ -341,7 +341,7 @@ class ReplicationManager:
port = kargs.get("port", PORT)
# List of attributes that need to be excluded from replication.
- excludes = ('memberof',
+ excludes = ('memberof', 'entryusn',
'krblastsuccessfulauth',
'krblastfailedauth',
'krbloginfailedcount')