mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
adtrustinstance: Restart samba service at the end of adtrust-install
Errors related to establishing trust can occur if samba service is not restarted after ipa-adtrust-install has been run. Restart the service at the end of the installer to avoid such issues. https://fedorahosted.org/freeipa/ticket/5134 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
This commit is contained in:
parent
afd253b349
commit
fa3ed16760
@ -749,6 +749,12 @@ class ADTRUSTInstance(service.Service):
|
||||
except:
|
||||
pass
|
||||
|
||||
def __restart_smb(self):
|
||||
try:
|
||||
services.knownservices.smb.restart()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def __enable(self):
|
||||
self.backup_state("enabled", self.is_enabled())
|
||||
# We do not let the system start IPA components on its own,
|
||||
@ -880,6 +886,7 @@ class ADTRUSTInstance(service.Service):
|
||||
if self.add_sids:
|
||||
self.step("adding SIDs to existing users and groups",
|
||||
self.__add_sids)
|
||||
self.step("restarting smbd", self.__restart_smb)
|
||||
|
||||
self.start_creation(show_service_name=False)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user