mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Service mod.: Proper(?) handling of return code 69
This adds "69" to the return codes from the status command that should be
considered as not running. At least "django-celery" uses this return code,
maybe others::
/venv/bin/python /code/project/manage.py celeryctl status
echo $? # 69 when not running.
A bit of googling let me to http://tldp.org/LDP/abs/html/exitcodes.html and
on a Ubuntu Server 12.10 I get::
~# cat /usr/include/sysexits.h | grep 69
#define EX_UNAVAILABLE 69 /* service unavailable */
I'm not sure if the content of sysexits.h is the same on other OS'es.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user