mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
notification modules should set chnged to False
This commit is contained in:
parent
c0f138db1f
commit
ccd2bafd37
1 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ def main():
|
||||||
|
|
||||||
# If we're in check mode, just exit pretending like we succeeded
|
# If we're in check mode, just exit pretending like we succeeded
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
module.exit_json(changed=True)
|
module.exit_json(changed=False)
|
||||||
|
|
||||||
# Send the data to Flowdock
|
# Send the data to Flowdock
|
||||||
try:
|
try:
|
||||||
|
@ -183,7 +183,7 @@ def main():
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
module.fail_json(msg="unable to send msg: %s" % e)
|
module.fail_json(msg="unable to send msg: %s" % e)
|
||||||
|
|
||||||
module.exit_json(changed=True, msg=module.params["msg"])
|
module.exit_json(changed=False, msg=module.params["msg"])
|
||||||
|
|
||||||
# this is magic, see lib/ansible/module_common.py
|
# this is magic, see lib/ansible/module_common.py
|
||||||
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
||||||
|
|
Loading…
Reference in a new issue