mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2318 from sfromm/issue2317
Consider service stopped if rc is 1
This commit is contained in:
commit
9980cfcc60
1 changed files with 3 additions and 1 deletions
|
@ -414,8 +414,10 @@ class LinuxService(Service):
|
||||||
self.running = True
|
self.running = True
|
||||||
|
|
||||||
# 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
|
||||||
|
# For reference, see:
|
||||||
|
# http://refspecs.linuxbase.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html
|
||||||
if self.running is None:
|
if self.running is None:
|
||||||
if rc in [2, 3, 4, 69]:
|
if rc in [1, 2, 3, 4, 69]:
|
||||||
self.running = False
|
self.running = False
|
||||||
elif rc == 0:
|
elif rc == 0:
|
||||||
self.running = True
|
self.running = True
|
||||||
|
|
Loading…
Reference in a new issue