ansible: Add support for common configuration on Windows hosts
[lttng-ci.git] / automation / ansible / roles / babeltrace / tasks / main.yml
CommitLineData
3ea0152b
MJ
1---
2# Include variables and define needed variables.
3- name: Include OS-specific variables.
9e2e4e6b
MJ
4 include_vars: "{{ item }}"
5 with_first_found:
6 - "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
7 - "{{ ansible_distribution }}.yml"
8 - "{{ ansible_os_family }}.yml"
3ea0152b
MJ
9
10# Setup/install tasks.
11- include: setup-RedHat.yml
9e2e4e6b 12 when: ansible_os_family in ['RedHat', 'Rocky']
3ea0152b
MJ
13
14- include: setup-Debian.yml
15 when: ansible_os_family == 'Debian'
1be0d012
MJ
16
17- include: setup-Alpine.yml
18 when: ansible_os_family == 'Alpine'
599b56d0
MJ
19
20- include: setup-Suse.yml
21 when: ansible_os_family == 'Suse'
This page took 0.027533 seconds and 4 git commands to generate.