summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/service.py
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-04-27 12:37:04 +0200
committerMartin Kosek <mkosek@redhat.com>2011-04-28 09:59:34 +0200
commit98eefab5e15c4a01f0887c4c68cbe10b5cdaab84 (patch)
tree497ef8eb8e3a2b040d004711b9b7147610832483 /ipaserver/install/service.py
parent9f701781490e8544761eca464db528228021931e (diff)
downloadfreeipa.git-98eefab5e15c4a01f0887c4c68cbe10b5cdaab84.tar.gz
freeipa.git-98eefab5e15c4a01f0887c4c68cbe10b5cdaab84.tar.xz
freeipa.git-98eefab5e15c4a01f0887c4c68cbe10b5cdaab84.zip
Improve Directory Service open port checker
Wait for DS ports to open after _every_ DS service restart. Several restarts were missed by the current open port checker implementation. https://fedorahosted.org/freeipa/ticket/1182
Diffstat (limited to 'ipaserver/install/service.py')
-rw-r--r--ipaserver/install/service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py
index 0b9bb01e..1ebd96d7 100644
--- a/ipaserver/install/service.py
+++ b/ipaserver/install/service.py
@@ -98,7 +98,7 @@ def print_msg(message, output_fd=sys.stdout):
output_fd.write("\n")
-class Service:
+class Service(object):
def __init__(self, service_name, sstore=None, dm_password=None):
self.service_name = service_name
self.steps = []