Revert "remove checking of stderr for insserv (#1846)"
This reverts commit 2ee6e4cf66
.
This commit is contained in:
parent
8c6af73218
commit
bc39f8c42e
1 changed files with 2 additions and 2 deletions
|
@ -826,12 +826,12 @@ class LinuxService(Service):
|
|||
|
||||
if self.enable:
|
||||
(rc, out, err) = self.execute_command("%s %s" % (self.enable_cmd, self.name))
|
||||
if (rc != 0):
|
||||
if (rc != 0) or (err != ''):
|
||||
self.module.fail_json(msg=("Failed to install service. rc: %s, out: %s, err: %s" % (rc, out, err)))
|
||||
return (rc, out, err)
|
||||
else:
|
||||
(rc, out, err) = self.execute_command("%s -r %s" % (self.enable_cmd, self.name))
|
||||
if (rc != 0):
|
||||
if (rc != 0) or (err != ''):
|
||||
self.module.fail_json(msg=("Failed to remove service. rc: %s, out: %s, err: %s" % (rc, out, err)))
|
||||
return (rc, out, err)
|
||||
|
||||
|
|
Loading…
Reference in a new issue