Update S4U2proxy delegation list when creating replicas

This commit is contained in:
Rob Crittenden
2012-02-02 14:15:02 -05:00
committed by Martin Kosek
parent 2da6d6e746
commit af52c4d31e
4 changed files with 15 additions and 1 deletions

View File

@@ -247,6 +247,7 @@ class DsInstance(service.Service):
self.step("adding replication acis", self.__add_replication_acis)
# See LDIFs for automember configuration during replica install
self.step("setting Auto Member configuration", self.__add_replica_automember_config)
self.step("enabling S4U2Proxy delegation", self.__setup_s4u2proxy)
self.__common_post_setup()
@@ -544,6 +545,9 @@ class DsInstance(service.Service):
def __add_replication_acis(self):
self._ldap_mod("replica-acis.ldif", self.sub_dict)
def __setup_s4u2proxy(self):
self._ldap_mod("replica-s4u2proxy.ldif", self.sub_dict)
def __create_indices(self):
self._ldap_mod("indices.ldif")