summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/ldapupdate.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/ldapupdate.py')
-rw-r--r--ipaserver/install/ldapupdate.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py
index 5fac58eca..fd02bdc02 100644
--- a/ipaserver/install/ldapupdate.py
+++ b/ipaserver/install/ldapupdate.py
@@ -303,6 +303,15 @@ class LDAPUpdate:
self.sub_dict["MIN_DOMAIN_LEVEL"] = str(constants.MIN_DOMAIN_LEVEL)
if not self.sub_dict.get("MAX_DOMAIN_LEVEL"):
self.sub_dict["MAX_DOMAIN_LEVEL"] = str(constants.MAX_DOMAIN_LEVEL)
+ if not self.sub_dict.get("STRIP_ATTRS"):
+ self.sub_dict["STRIP_ATTRS"] = "%s" % (
+ " ".join(constants.REPL_AGMT_STRIP_ATTRS),)
+ if not self.sub_dict.get("EXCLUDES"):
+ self.sub_dict["EXCLUDES"] = "(objectclass=*) $ EXCLUDE %s" % (
+ " ".join(constants.REPL_AGMT_EXCLUDES),)
+ if not self.sub_dict.get("TOTAL_EXCLUDES"):
+ self.sub_dict["TOTAL_EXCLUDES"] = "(objectclass=*) $ EXCLUDE " + \
+ " ".join(constants.REPL_AGMT_TOTAL_EXCLUDES)
self.api = create_api(mode=None)
self.api.bootstrap(in_server=True, context='updates')
self.api.finalize()