Make "enabled" code aware of --check mode.

This commit is contained in:
Patrik Lundin 2014-08-28 14:44:43 +02:00 committed by Jonathan Armani
parent 1b97390765
commit c46e030100

View file

@ -989,6 +989,9 @@ class OpenBsdService(Service):
if rc == 1:
return
if self.module.check_mode:
self.module.exit_json(changed=True, msg="changing service enablement")
# XXX check rc ?
rc, stdout, stderr = self.execute_command("%s %s" % (self.enable_cmd, action))
self.changed = True