From aff369ad3dad20c9feb42e73282aefe0bd2d9eb4 Mon Sep 17 00:00:00 2001 From: Chris Hines <chris.hines@monash.edu> Date: Fri, 30 Oct 2015 10:03:46 +1100 Subject: [PATCH] enable the epel repo when installing lmod in a different way --- roles/lmod/tasks/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/roles/lmod/tasks/main.yml b/roles/lmod/tasks/main.yml index 9f16c8f5..6c84ac23 100644 --- a/roles/lmod/tasks/main.yml +++ b/roles/lmod/tasks/main.yml @@ -12,6 +12,17 @@ # sudo: true # when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "7" +- name: Install epel-release + yum: name=epel-release-7-5.noarch state=present + sudo: true + when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "7" + +- name: Enable epel + command: yum-config-manager --enable epel + sudo: true + when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "7" + + - name: install lua yum: name={{ item }} state=installed with_items: -- GitLab