Skip to content

Commit

Permalink
Fix probe tests in the gate
Browse files Browse the repository at this point in the history
Change-Id: I3a576a358c9ab941df684512c78da454ed2cd625
Related-Change: Idcacfb6dbfb0760128f10dbc0573856e4250b3bc
  • Loading branch information
tipabu committed May 21, 2018
1 parent 402cb9b commit 37dafa0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions playbooks/saio_single_node_setup/install_dependencies.yaml
Expand Up @@ -15,6 +15,32 @@
- hosts: all
become: true
tasks:
- name: Check for /etc/yum/vars/contentdir
stat:
path: /etc/yum/vars/contentdir
register: yum_contentdir

- when: not yum_contentdir.stat.exists
block:

- name: Discover package architecture
command: rpm -q --qf "%{arch}" -f /etc/redhat-release
register: rpm_arch

- debug:
msg: Package architecture is '{{ rpm_arch.stdout }}'

- name: Set contentdir to altarch
set_fact:
yum_contentdir: altarch
when: rpm_arch.stdout in ['aarch64', 'ppc64le']

- name: Populate /etc/yum/vars/contentdir
copy:
dest: /etc/yum/vars/contentdir
content: "{{ yum_contentdir|default('centos') }}"
become: true

- name: installing dependencies
yum: name={{ item }} state=present
with_items:
Expand Down

0 comments on commit 37dafa0

Please sign in to comment.