Commit bcdbb195 by Michael DeHaan

Merge pull request #1872 from runekaagaard/devel

Service mod.: Proper(?) handling of return code 69
parents 224b503b 27ab2e55
...@@ -313,9 +313,7 @@ class LinuxService(Service): ...@@ -313,9 +313,7 @@ class LinuxService(Service):
# if the job status is still not known check it by response code # if the job status is still not known check it by response code
if self.running == None: if self.running == None:
if rc == 3: if rc in [2, 3, 69]:
self.running = False
if rc == 2:
self.running = False self.running = False
elif rc == 0: elif rc == 0:
self.running = True self.running = True
......
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