mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Make service naming in ipa-server-install consistent
Forces more consistency into ipa-server-install output. All descriptions of services that are not instances of SimpleServiceInstance are now in the following format: <Description> (<Service Name>) Furthermore, start_creation method has been modified to support custom start and end messages. See documentation for more info. https://fedorahosted.org/freeipa/ticket/3059
This commit is contained in:
committed by
Rob Crittenden
parent
7e3c5e3283
commit
7ce6c4a2d3
@@ -132,7 +132,7 @@ class ADTRUSTInstance(service.Service):
|
||||
self.rid_base = None
|
||||
self.secondary_rid_base = None
|
||||
|
||||
service.Service.__init__(self, "smb", dm_password=None, ldapi=True)
|
||||
service.Service.__init__(self, "smb", service_desc="CIFS", dm_password=None, ldapi=True)
|
||||
|
||||
if fstore:
|
||||
self.fstore = fstore
|
||||
@@ -757,7 +757,7 @@ class ADTRUSTInstance(service.Service):
|
||||
self.step("adding SIDs to existing users and groups",
|
||||
self.__add_sids)
|
||||
|
||||
self.start_creation("Configuring CIFS:")
|
||||
self.start_creation(show_service_name=False)
|
||||
|
||||
def uninstall(self):
|
||||
if self.is_configured():
|
||||
|
||||
Reference in New Issue
Block a user