From aaaff1f1206786bd60e93eeabb305e6335f49456 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 22 Jul 2015 12:01:46 -0700 Subject: [PATCH] Use the correct module param names to pass user/pass --- notification/campfire.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notification/campfire.py b/notification/campfire.py index 62d65015213..ea4df7c0ba8 100644 --- a/notification/campfire.py +++ b/notification/campfire.py @@ -94,8 +94,8 @@ def main(): AGENT = "Ansible/1.2" # Hack to add basic auth username and password the way fetch_url expects - module.params['username'] = token - module.params['password'] = 'X' + module.params['url_username'] = token + module.params['url_password'] = 'X' target_url = '%s/room/%s/speak.xml' % (URI, room) headers = {'Content-Type': 'application/xml',