get_service_status() is now using self.service_control() to check status
Fixes a bug where init-scripts were not used
This commit is contained in:
parent
3f88a14b86
commit
99fe051fb8
1 changed files with 2 additions and 1 deletions
3
service
3
service
|
@ -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…
Reference in a new issue