diff options
author | Tomas Babej <tbabej@redhat.com> | 2012-10-11 03:32:17 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2012-10-22 21:37:11 -0400 |
commit | 7ce6c4a2d3920f502b9f02e841a651bd0819915b (patch) | |
tree | 6b7857dab880cd5684f3952ef899013f0c00151f /ipaserver/install/ntpinstance.py | |
parent | 7e3c5e3283ff9fa873691c2c2fccbfd304c1b7c7 (diff) | |
download | freeipa-7ce6c4a2d3920f502b9f02e841a651bd0819915b.tar.gz freeipa-7ce6c4a2d3920f502b9f02e841a651bd0819915b.tar.xz freeipa-7ce6c4a2d3920f502b9f02e841a651bd0819915b.zip |
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
Diffstat (limited to 'ipaserver/install/ntpinstance.py')
-rw-r--r-- | ipaserver/install/ntpinstance.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/ntpinstance.py b/ipaserver/install/ntpinstance.py index e1b72dda5..5fbe21df4 100644 --- a/ipaserver/install/ntpinstance.py +++ b/ipaserver/install/ntpinstance.py @@ -26,7 +26,7 @@ from ipapython.ipa_log_manager import * class NTPInstance(service.Service): def __init__(self, fstore=None): - service.Service.__init__(self, "ntpd") + service.Service.__init__(self, "ntpd", service_desc="NTP daemon") if fstore: self.fstore = fstore @@ -155,7 +155,7 @@ class NTPInstance(service.Service): self.step("configuring ntpd to start on boot", self.__enable) self.step("starting ntpd", self.__start) - self.start_creation("Configuring ntpd") + self.start_creation() def uninstall(self): if self.is_configured(): |