Browse Source

CentOS ansible install fixes

pull/1943/head
Greg Szabo 7 years ago
parent
commit
01aebbb6ee
2 changed files with 3 additions and 4 deletions
  1. +3
    -3
      ansible/roles/install/tasks/centos.yml
  2. +0
    -1
      ansible/roles/install/tasks/debian.yml

+ 3
- 3
ansible/roles/install/tasks/centos.yml 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}}"

+ 0
- 1
ansible/roles/install/tasks/debian.yml View File

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

Loading…
Cancel
Save