Commit 8bb41bc6 by Michael DeHaan

Merge pull request #566 from jeremysmitherman/service-no-pid

Added additional output to service status checker
parents 25986fa1 7af3bdc8
......@@ -108,6 +108,8 @@ def _get_service_status(name):
running = True
elif cleaned_status_stdout.find("start") != -1 and cleaned_status_stdout.find("not") == -1:
running = True
elif 'could not access pid file' in cleaned_status_stdout:
running = False
# if the job status is still not known check it by special conditions
if running == None:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment