From b71a09d6abf66c2602f4487b53e9c872a1aa817e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 15 May 2013 09:59:14 -0400 Subject: [PATCH] module returns changed=false on success Signed-off-by: Brian Coca --- library/notification/jabber | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/notification/jabber b/library/notification/jabber index e4beb4adbe..9f1552651a 100644 --- a/library/notification/jabber +++ b/library/notification/jabber @@ -123,8 +123,7 @@ def main(): except Exception, e: module.fail_json(msg="unable to send msg: %s" % e) - changed = True - module.exit_json(changed=changed, to=to, user=user, msg=msg.getBody()) + module.exit_json(changed=False, to=to, user=user, msg=msg.getBody()) # this is magic, see lib/ansible/module_common.py #<>