From 64ce8f0c2844f3b287e5da9b4c8231266606c31b Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Apr 08 2019 05:35:35 +0000 Subject: Remove DsInstance.request_service_keytab as it is not needed anymore DsInstance.request_service_keytab() used to configure /etc/sysconfig/dirsrv which is not needed anymore with 389-ds-base 1.4.1.2. Thus, the method became indistinguishable from the parent and can be removed completely. Reviewed-By: Christian Heimes --- diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py index 318559b..a6d807a 100644 --- a/ipaserver/install/dsinstance.py +++ b/ipaserver/install/dsinstance.py @@ -1340,14 +1340,6 @@ class DsInstance(service.Service): if self.domainlevel is not None: self._ldap_mod("domainlevel.ldif", self.sub_dict) - def request_service_keytab(self): - super(DsInstance, self).request_service_keytab() - - # Configure DS to use the keytab - vardict = {"KRB5_KTNAME": self.keytab} - ipautil.config_replace_variables(paths.SYSCONFIG_DIRSRV, - replacevars=vardict) - def write_certmap_conf(realm, ca_subject): """(Re)write certmap.conf with given CA subject DN."""