Use the correct module param names to pass user/pass

pull/4420/head
Toshio Kuratomi 2015-07-22 12:01:46 -07:00 committed by Matt Clay
parent bb0082a67d
commit 4fb7a2821a
1 changed files with 2 additions and 2 deletions

View File

@ -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',