Adding better failure output for chkconfig failures rather than
just saying that the service name is unknown
This commit is contained in:
parent
58c445b8a6
commit
a9bf607013
1 changed files with 1 additions and 1 deletions
|
@ -577,7 +577,7 @@ class LinuxService(Service):
|
|||
self.execute_command("%s --add %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:
|
||||
self.module.fail_json(msg="unknown service name")
|
||||
self.module.fail_json(msg="service %s does not support chkconfig" % self.name)
|
||||
state = out.split()[-1]
|
||||
if self.enable and ( "3:on" in out and "5:on" in out ):
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue