mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-27 03:31:42 +00:00
Added ubuntu patch
This commit is contained in:
@ -14,7 +14,6 @@
|
||||
when: ansible_os_family == "Debian"
|
||||
apt: pkg={{item}}
|
||||
with_items:
|
||||
- python-minimal
|
||||
- unzip
|
||||
- jq
|
||||
- "{{service}}"
|
||||
|
8
ansible/ubuntu16-patch.yml
Normal file
8
ansible/ubuntu16-patch.yml
Normal 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)
|
||||
|
Reference in New Issue
Block a user