ansible: Install compilers on sles nodes
[lttng-ci.git] / automation / ansible / roles / compilers / tasks / main.yml
CommitLineData
687bfe6f
MJ
1---
2# Include variables and define needed variables.
3- name: Include OS-specific variables.
60ecd280
MJ
4 include_vars: "{{ item }}"
5 with_first_found:
6 - "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
b67c1a0b 7 - "{{ ansible_distribution }}-{{ ansible_distribution_release }}.yml"
60ecd280
MJ
8 - "{{ ansible_distribution }}.yml"
9 - "{{ ansible_os_family }}.yml"
687bfe6f
MJ
10
11# Setup/install tasks.
12- include: setup-RedHat.yml
60ecd280 13 when: ansible_os_family in ['RedHat', 'Rocky']
687bfe6f
MJ
14
15- include: setup-Debian.yml
16 when: ansible_os_family == 'Debian'
17
18- include: setup-Alpine.yml
19 when: ansible_os_family == 'Alpine'
df8c0674
KS
20
21- include: setup-Suse.yml
22 when: ansible_os_family == 'Suse'
This page took 0.029412 seconds and 4 git commands to generate.