CentOS ansible install fixes

This commit is contained in:
Greg Szabo
2017-06-19 16:37:26 +00:00
parent c30893d867
commit 01aebbb6ee
2 changed files with 3 additions and 4 deletions

View File

@ -3,18 +3,18 @@
when: ansible_os_family == "RedHat"
yum_repository:
name: tendermint
baseurl: repo.testnets.interblock.io/centos
baseurl: http://tendermint-packages.s3-website-us-west-1.amazonaws.com/centos
ui_repoid_vars: 7 os x86_64
description: "Tendermint repo"
gpgcheck: yes
gpgkey: repo.testnets.interblock.io/centos/RPM-GPG-KEY-Tendermint
gpgkey: http://tendermint-packages.s3-website-us-west-1.amazonaws.com/centos/RPM-GPG-KEY-Tendermint
repo_gpgcheck: yes
- name: Install package on CentOS/RedHat
when: ansible_os_family == "RedHat"
yum: pkg={{item}}
with_items:
- unzip
- epel-release
- jq
- "{{service}}"

View File

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