install epel release for rhel

install required packages before common

roles/kubernetes/preinstall/tasks/main.yml
This commit is contained in:
Smaine Kahlouch 2016-01-31 21:05:49 +01:00
parent 6eff3f0fce
commit 4d3f6c6533
2 changed files with 8 additions and 1 deletions

View file

@ -52,6 +52,14 @@
ansible_distribution_major_version > 21
changed_when: False
- name: Install epel-release for RedHat and CentOS distribs
action:
module: "{{ ansible_pkg_mgr }}"
name: "epel-release"
state: latest
when: ansible_distribution == "RedHat" or
ansible_distribution == "CentOS"
- name: Install packages requirements
action:
module: "{{ ansible_pkg_mgr }}"

View file

@ -1,4 +1,3 @@
required_pkgs:
- epel-release
- libselinux-python
- device-mapper-libs