mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-11 03:10:59 +00:00
Make "enabled" code aware of --check mode.
This commit is contained in:
@@ -1032,6 +1032,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
|
||||
|
||||
Reference in New Issue
Block a user