Added ubuntu patch

This commit is contained in:
Greg Szabo
2017-06-19 14:38:15 +00:00
parent 08a079ce16
commit 9a0629564a
2 changed files with 8 additions and 1 deletions

View File

@ -14,7 +14,6 @@
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"
apt: pkg={{item}} apt: pkg={{item}}
with_items: with_items:
- python-minimal
- unzip - unzip
- jq - jq
- "{{service}}" - "{{service}}"

View File

@ -0,0 +1,8 @@
---
#Ubuntu 16.04 is not installing the python package in the standard installation on DigitalOcean. This "patch" will install it so the rest of the ansible playbooks can work properly.
- hosts: "{{ lookup('env','TF_VAR_TESTNET_NAME') }}"
gather_facts: no
tasks:
- raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)