Commit 4f4ee369 by Michael DeHaan

Merge pull request #2440 from jochu/service-chkconfig-add

attempt to add service to chkconfig when suggested
parents 97d2c955 f1829a0f
...@@ -474,6 +474,9 @@ class LinuxService(Service): ...@@ -474,6 +474,9 @@ 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 'chkconfig --add %s' % self.name in err:
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: if not self.name in out:
self.module.fail_json(msg="unknown service name") self.module.fail_json(msg="unknown service name")
state = out.split()[-1] state = out.split()[-1]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment