From 41cbea0026b191d8410af2cf00a71aad5357f43f Mon Sep 17 00:00:00 2001 From: Ludwig Krispenz Date: Thu, 6 Aug 2015 16:40:52 +0200 Subject: handle multiple managed suffixes trigger topology updaet if suffix entry is added trigger topology update if managedSuffix is modified in host entry --- ipaserver/install/dsinstance.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipaserver/install') diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py index 45a523e9b..3fffe9a0a 100644 --- a/ipaserver/install/dsinstance.py +++ b/ipaserver/install/dsinstance.py @@ -407,6 +407,9 @@ class DsInstance(service.Service): DOMAIN_LEVEL=self.domainlevel, MAX_DOMAIN_LEVEL=constants.MAX_DOMAIN_LEVEL, MIN_DOMAIN_LEVEL=constants.MIN_DOMAIN_LEVEL, + STRIP_ATTRS=" ".join(replication.STRIP_ATTRS), + EXCLUDES='(objectclass=*) $ EXCLUDE %s' % " ".join(replication.EXCLUDES), + TOTAL_EXCLUDES='(objectclass=*) $ EXCLUDE %s' % " ".join(replication.TOTAL_EXCLUDES), ) def __create_instance(self): -- cgit