1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #2195 from tbielawa/NOOP

First try and making the nagios module NOOPpable
This commit is contained in:
Michael DeHaan 2013-02-26 17:32:41 -08:00
commit 7090ad3aac

View file

@ -185,6 +185,9 @@ def main():
##################################################################
ansible_nagios = Nagios(module, **module.params)
if self.check_mode:
module.exit_json(changed=True)
else:
ansible_nagios.act()
##################################################################