mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added cases for 'dead but subsys locked' status
This commit is contained in:
parent
b8c4bb9e6e
commit
9bb83067bc
1 changed files with 4 additions and 0 deletions
|
@ -101,6 +101,8 @@ def _get_service_status(name, pattern):
|
|||
if running == None:
|
||||
if rc == 3:
|
||||
running = False
|
||||
if rc == 2:
|
||||
running = False
|
||||
elif rc == 0:
|
||||
running = True
|
||||
|
||||
|
@ -120,6 +122,8 @@ def _get_service_status(name, pattern):
|
|||
running = False
|
||||
elif 'is dead and pid file exists' in cleanout:
|
||||
running = False
|
||||
elif 'dead but subsys locked' in cleanout:
|
||||
running = False
|
||||
|
||||
# if the job status is still not known check it by special conditions
|
||||
if running == None:
|
||||
|
|
Loading…
Reference in a new issue