mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
fixes check mode for Ubuntu 14.04
This commit is contained in:
committed by
Matt Clay
parent
3e72a0657d
commit
20301427f8
@@ -784,6 +784,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:
|
||||
|
||||
Reference in New Issue
Block a user