Merge pull request #1407 from Jmainguy/service_check_ubuntu
fixes check mode for Ubuntu 14.04
This commit is contained in:
commit
29f4a5a1ed
1 changed files with 3 additions and 0 deletions
|
@ -765,6 +765,9 @@ class LinuxService(Service):
|
|||
else:
|
||||
action = 'disable'
|
||||
|
||||
if self.module.check_mode:
|
||||
rc = 0
|
||||
return
|
||||
(rc, out, err) = self.execute_command("%s %s %s" % (self.enable_cmd, self.name, action))
|
||||
if rc != 0:
|
||||
if err:
|
||||
|
|
Loading…
Add table
Reference in a new issue