From a1ef2195f5bd9b0d7ecf46d3460ab965b14452b6 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 --- notification/jabber | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/notification/jabber b/notification/jabber index e4beb4adbe8..9f1552651a1 100644 --- a/notification/jabber +++ b/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 #<>