From 895b2e2b4339f1b9edc2bc995e7548ac118ea5a1 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 1 Nov 2012 14:23:38 -0400 Subject: Revert "Save service name on service startup" This reverts commit 1ef651e7f9f5f940051dc470385aa08eefcd60af. This was an olde version of the patch, next commit will put in the acked version. --- ipapython/platform/redhat.py | 1 - 1 file changed, 1 deletion(-) (limited to 'ipapython/platform/redhat.py') diff --git a/ipapython/platform/redhat.py b/ipapython/platform/redhat.py index cd127773..3551c284 100644 --- a/ipapython/platform/redhat.py +++ b/ipapython/platform/redhat.py @@ -71,7 +71,6 @@ class RedHatService(base.PlatformService): ipautil.run(["/sbin/service", self.service_name, "start", instance_name], capture_output=capture_output) if wait and self.is_running(instance_name): self.__wait_for_open_ports(instance_name) - super(RedHatService, self).start(instance_name) def restart(self, instance_name="", capture_output=True, wait=True): ipautil.run(["/sbin/service", self.service_name, "restart", instance_name], capture_output=capture_output) -- cgit