18 lines
468 B
YAML
18 lines
468 B
YAML
---
|
|
- name: Fix dpkg if needed
|
|
raw: dpkg --configure -a
|
|
|
|
- name: Update apt
|
|
raw: apt-get update
|
|
|
|
- name: Install package dependencies
|
|
raw: 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
|