From 639b0a4e99b35e5fff72b956335ce6fa149f65dc Mon Sep 17 00:00:00 2001 From: Sachin Prabhu Date: Thu, 18 Feb 2021 16:48:06 +0000 Subject: Add CentOS 8 specific actions for common.prep Signed-off-by: Sachin Prabhu --- vagrant/ansible/roles/common.prep/tasks/centos8.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vagrant/ansible/roles/common.prep/tasks/centos8.yml diff --git a/vagrant/ansible/roles/common.prep/tasks/centos8.yml b/vagrant/ansible/roles/common.prep/tasks/centos8.yml new file mode 100644 index 0000000..bb3b9bd --- /dev/null +++ b/vagrant/ansible/roles/common.prep/tasks/centos8.yml @@ -0,0 +1,15 @@ +- name: Perform a complete update + yum: + name: '*' + state: latest + +- name: Enable EPEL repository + yum: + name: epel-release + state: latest + +- name: Enable GlusterFS nightly rpms repository + command: yum-config-manager --add-repo http://artifacts.ci.centos.org/gluster/nightly/master.repo + +- name: Enable Samba nightly rpms repository + command: yum-config-manager --add-repo http://artifacts.ci.centos.org/gluster/nightly-samba/samba-nightly-master.repo -- cgit