Making the nagios module NOOPpable

pull/2195/head
Tim Bielawa 12 years ago
parent 6a12d64059
commit b0bd0a0f4a

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

Loading…
Cancel
Save