Hi,
I am trying to download some resource from the web using the uri module as follows
- name: Download the resource from the web
uri: url={{app_url}} dest=/opt/app creates=/opt/app/{{app_version}}
This keeps failing with the following error:
failed: [192.168.111.222] => {"failed": true, "item": ""}
msg: httplib2 is not installed
httplib2 is installed however:
lars (master)$ pip install httplib2
Requirement already satisfied (use --upgrade to upgrade): httplib2 in /usr/local/lib/python2.7/site-packages
Cleaning up...
Any idea what can be the cause?
Thanks, Lars