fixes check mode for Ubuntu 14.04

pull/18777/head
Jonathan Mainguy 10 years ago 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:

Loading…
Cancel
Save