Fixes #4448 reloaded services should be started if not running

pull/4660/merge
James Tanner 11 years ago
parent 1f6edf7d76
commit 40574c1938

@ -272,7 +272,7 @@ class Service(object):
if self.state and self.running is None:
self.module.fail_json(msg="failed determining service state, possible typo of service name?")
# Find out if state has changed
if not self.running and self.state in ["started", "running"]:
if not self.running and self.state in ["started", "running", "reloaded"]:
self.svc_change = True
elif self.running and self.state in ["stopped","reloaded"]:
self.svc_change = True
@ -288,6 +288,8 @@ class Service(object):
# Control service
if self.state in ['started', 'running']:
self.action = "start"
elif not self.running and self.state == 'reloaded':
self.action = "start"
elif self.state == 'stopped':
self.action = "stop"
elif self.state == 'reloaded':

Loading…
Cancel
Save