ansible: Update package installations to support EL aarch64
[lttng-ci.git] / automation / ansible / roles / common / tasks / main.yml
index 9a5107b1179e502193d9f14612e37de1cc88f2c1..61ee1ee329f4ee9aea022c19450281ede74847ba 100644 (file)
@@ -1,16 +1,16 @@
 ---
 # Include variables and define needed variables.
 - name: Include OS-specific variables.
-  include_vars: "{{ ansible_os_family }}.yml"
-
-- name: Define common_packages.
-  set_fact:
-    common_packages: "{{ __common_packages | list }}"
-  when: common_packages is not defined
+  include_vars: "{{ item }}"
+  with_first_found:
+    - "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}-{{ ansible_architecture }}.yml"
+    - "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
+    - "{{ ansible_distribution }}.yml"
+    - "{{ ansible_os_family }}.yml"
 
 # Setup/install tasks.
 - include: setup-RedHat.yml
-  when: ansible_os_family == 'RedHat'
+  when: ansible_os_family in ['RedHat', 'Rocky']
 
 - include: setup-Debian.yml
   when: ansible_os_family == 'Debian'
 - include: setup-Suse.yml
   when: ansible_os_family == 'Suse'
 
-- name: Remove ubuntu user
-  user:
-    name: ubuntu
-    state: absent
-    remove: yes
-
-- name: Create jenkins user
-  user:
-    name: 'jenkins'
+- include: setup-Windows.yml
+  when: ansible_os_family == "Windows"
 
-- name: Set up authorized_keys for the jenkins user
+- name: Set up authorized_keys for the root user
   authorized_key:
-    user: 'jenkins'
-    key: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDA3fwpioVLDoCQsQkYK5bOwPb8N0EXeYm2MleBQTfqxtKaqWWbmUtFXAiyclKHRspjcAiIKwwqLyhPopHBqJzmXnB0GsfGmxXJ6wSBgKJ4kdBVRM+nKlK0wCl1oQkFeV/Xl3jzt1Ey96XiNWlesfkvgcMCpsJzQ7/xRb9IcghskzlQbLOwDNir/156JgAYUYvOLqNCcE+xcgPxJGanfZDXTLkfBYxaeaB8isBPeEU6fhPvu/W055M1uB7E0qhcbFtuKCBu1Fg4jzsW4yDU8+ZB1b5mAXwEAuMbVGMrOf4rjtTpGpQd6XFsXpFT28NU1u5j2cUbtANJalkNDX/UY6XJ jenkins@ci-master-02'
+    user: 'root'
+    key: "{% for key in query('fileglob', 'public_keys/*.pub') %}{{ lookup('file', key) ~ '\n'}}{% endfor %}"
+    exclusive: true
+  when: ansible_os_family != 'Windows'
 
-#- name: Create sudoers.d directory.
-#  file:
-#    path: /etc/sudoers.d
-#    owner: root
-#    group: root
-#    mode: 0755
-#    state: directory
-#
-#- name: Set includedir in /etc/sudoers.
-#  lineinfile:
-#    dest: /etc/sudoers
-#    line: "#includedir /etc/sudoers.d"
-#    state: present
-#    validate: "/usr/sbin/visudo -cf %s"
-#
-#- name: Create jenkins sudoers file.
-#  copy:
-#    dest: "/etc/sudoers.d/jenkins"
-#    content: "jenkins ALL=NOPASSWD: ALL"
-#    mode: 0440
-#    owner: root
-#    group: root
-#    validate: "/usr/sbin/visudo -cf %s"
+- include: users-Windows.yml
+  when: ansible_os_family == "Windows"
 
-- name: Remove jenkins sudoers file
-  file:
-    path: "/etc/sudoers.d/jenkins"
-    state: absent
+- include: users.yml
+  when: ansible_os_family != "Windows"
This page took 0.02339 seconds and 4 git commands to generate.