Consider service stopped if rc is 1

Per LSB spec, consider service stopped if rc from 'service status' is 1.
Added comment with url to LSB spec reference.
reviewable/pr18780/r1
Stephen Fromm 12 years ago
parent f15bb4393e
commit e1e5451f97

@ -414,8 +414,10 @@ class LinuxService(Service):
self.running = True
# 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 rc in [2, 3, 4, 69]:
if rc in [1, 2, 3, 4, 69]:
self.running = False
elif rc == 0:
self.running = True

Loading…
Cancel
Save