Merge pull request #1867 from c0rner/devel

get_service_status() is now using self.service_control() to check status
pull/1825/merge
Michael DeHaan 12 years ago
commit fa953ba6b3

@ -300,7 +300,8 @@ class LinuxService(Service):
self.svc_initctl = location['initctl']
def get_service_status(self):
rc, status_stdout, status_stderr = self.execute_command("%s %s status %s" % (self.svc_cmd, self.name, self.arguments))
self.action = "status"
rc, status_stdout, status_stderr = self.service_control()
# Check if we got upstart on the system and then the job state
if self.svc_initctl != None and self.running is None:

Loading…
Cancel
Save