diff --git a/library/service b/library/service index 9d6432b0d3d..3209fd4fe99 100644 --- a/library/service +++ b/library/service @@ -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