jjb: Add el9 arch to elbuilds
[lttng-ci.git] / automation / ansible / roles / lttng-tools / tasks / main.yml
index e4894816881dca13d38af3b641dc7c6064829a28..291f5b39c5ff540388b6ac83ef35f121d7696b80 100644 (file)
@@ -8,9 +8,22 @@
     lttng_tools_packages: "{{ __lttng_tools_packages | list }}"
   when: lttng_tools_packages is not defined
 
+- name: Define lttng_tools_packages_no_recommends.
+  set_fact:
+    lttng_tools_packages_no_recommends: "{{ __lttng_tools_packages_no_recommends | list }}"
+  when:
+    - lttng_tools_packages_no_recommends is not defined
+    - ansible_os_family == 'Debian' or ansible_os_family == 'Suse'
+
 # Setup/install tasks.
 - include: setup-RedHat.yml
   when: ansible_os_family == 'RedHat'
 
 - include: setup-Debian.yml
   when: ansible_os_family == 'Debian'
+
+- include: setup-Alpine.yml
+  when: ansible_os_family == 'Alpine'
+
+- include: setup-Suse.yml
+  when: ansible_os_family == 'Suse'
This page took 0.025672 seconds and 4 git commands to generate.