diff options
author | Ludwig Krispenz <lkrispen@redhat.com> | 2015-08-06 16:40:52 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2015-08-10 17:35:10 +0200 |
commit | 41cbea0026b191d8410af2cf00a71aad5357f43f (patch) | |
tree | 747aafa5b5250f81f29538e6c001c564afa88e61 /ipaserver/install/dsinstance.py | |
parent | 8b8acf95dcf0b4cc8baa2344c5e68f8632f590c1 (diff) | |
download | freeipa-cstopology.tar.gz freeipa-cstopology.tar.xz freeipa-cstopology.zip |
handle multiple managed suffixescstopology
trigger topology updaet if suffix entry is added
trigger topology update if managedSuffix is modified in host entry
Diffstat (limited to 'ipaserver/install/dsinstance.py')
-rw-r--r-- | ipaserver/install/dsinstance.py | 3 |
1 files changed, 3 insertions, 0 deletions
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): |