summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/service.py')
-rw-r--r--ipaserver/install/service.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py
index efbb2c933..62db9baf5 100644
--- a/ipaserver/install/service.py
+++ b/ipaserver/install/service.py
@@ -258,7 +258,10 @@ class Service(object):
if est.tm_min > 0:
if est.tm_min > 1:
plural = 's'
- self.print_msg('%s: Estimated time %d minute%s' % (message, est.tm_min, plural))
+ if est.tm_sec > 0:
+ self.print_msg('%s: Estimated time %d minute%s %d seconds' % (message, est.tm_min, plural, est.tm_sec))
+ else:
+ self.print_msg('%s: Estimated time %d minute%s' % (message, est.tm_min, plural))
else:
if est.tm_sec > 1:
plural = 's'