Files
convert-images-for-web/roles/ansible-dependencies/tasks/main.yml
2018-02-12 08:42:17 -05:00

12 lines
393 B
YAML

---
- name: Install package dependencies
raw: apt-get update -qq && apt-get install -y python-simplejson python-urllib3 python-openssl python-pyasn1 python-pip ca-certificates
- name: Install pip dependencies
raw: pip install ndg-httpsclient
ignore_errors: true
- name: Install pip dependencies again because it fails sometimes
raw: pip install ndg-httpsclient
ignore_errors: true