From 7ce6c4a2d3920f502b9f02e841a651bd0819915b Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 11 Oct 2012 03:32:17 -0400 Subject: 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: () 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 --- ipaserver/install/upgradeinstance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipaserver/install/upgradeinstance.py') diff --git a/ipaserver/install/upgradeinstance.py b/ipaserver/install/upgradeinstance.py index 3c6bbec5..aa4440c7 100644 --- a/ipaserver/install/upgradeinstance.py +++ b/ipaserver/install/upgradeinstance.py @@ -80,7 +80,8 @@ class IPAUpgrade(service.Service): self.step("restoring configuration", self.__restore_config) self.step("starting directory server", self.start) - self.start_creation("Upgrading IPA:") + self.start_creation(start_message="Upgrading IPA:", + show_service_name=False) def __save_config(self): shutil.copy2(self.filename, self.savefilename) -- cgit