fail when service cannot be found by chkconfig
This commit is contained in:
parent
78f82a089d
commit
c4d075d8a5
1 changed files with 1 additions and 1 deletions
2
service
2
service
|
@ -465,7 +465,7 @@ class LinuxService(Service):
|
||||||
if self.enable_cmd.endswith("chkconfig"):
|
if self.enable_cmd.endswith("chkconfig"):
|
||||||
(rc, out, err) = self.execute_command("%s --list %s" % (self.enable_cmd, self.name))
|
(rc, out, err) = self.execute_command("%s --list %s" % (self.enable_cmd, self.name))
|
||||||
if not self.name in out:
|
if not self.name in out:
|
||||||
self.module.exit_json(msg="unknown service name")
|
self.module.fail_json(msg="unknown service name")
|
||||||
state = out.split()[-1]
|
state = out.split()[-1]
|
||||||
if self.enable and ( "3:on" in out and "5:on" in out ):
|
if self.enable and ( "3:on" in out and "5:on" in out ):
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue