From 90e716460e2e1acf95a74370d5e4dfd9f9138bcf Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 29 Sep 2010 13:55:54 -0400 Subject: Include time duration hints when configuring services in ipa-server-install. Give a better heads-up on how long the installation will take. Particularly important when configuring dogtag. ticket 139 --- ipaserver/install/cainstance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver/install/cainstance.py') diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py index f1dcc9b51..1998928a3 100644 --- a/ipaserver/install/cainstance.py +++ b/ipaserver/install/cainstance.py @@ -245,7 +245,7 @@ class CADSInstance(service.Service): self.step("configuring directory to start on boot", self.__enable) self.step("restarting directory server", self.__restart_instance) - self.start_creation("Configuring directory server for the CA:") + self.start_creation("Configuring directory server for the CA", 30) def __setup_sub_dict(self): server_root = dsinstance.find_server_root() @@ -455,7 +455,7 @@ class CAInstance(service.Service): self.step("configuring certificate server to start on boot", self.__enable) self.step("restarting certificate server", self.__restart_instance) - self.start_creation("Configuring certificate server:") + self.start_creation("Configuring certificate server", 360) def create_instance(self): """ -- cgit