Initial skeleton of setup. Ansible only runs a few initial tasks.
This commit is contained in:
11
ansible/tasks/ansible-dependencies.yml
Normal file
11
ansible/tasks/ansible-dependencies.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
- name: Install package dependencies
|
||||
raw: apt-get update -qq && apt-get install -y python-dev 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
|
||||
Reference in New Issue
Block a user