ansible: Enable Rocky PowerTools on Rocky Linux 8
[lttng-ci.git] / automation / ansible / roles / common / tasks / main.yml
index f756faa3a2cb507bc33a0fdb98785a621525c737..105eb40d0958e50f70ebfdefe353abc09893b9eb 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-Alpine.yml
   when: ansible_os_family == 'Alpine'
 
-- name: Create jenkins user
-  user:
-    name: 'jenkins'
-
-- name: Set up authorized_keys for the jenkins user
-  authorized_key:
-    user: 'jenkins'
-    key: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDA3fwpioVLDoCQsQkYK5bOwPb8N0EXeYm2MleBQTfqxtKaqWWbmUtFXAiyclKHRspjcAiIKwwqLyhPopHBqJzmXnB0GsfGmxXJ6wSBgKJ4kdBVRM+nKlK0wCl1oQkFeV/Xl3jzt1Ey96XiNWlesfkvgcMCpsJzQ7/xRb9IcghskzlQbLOwDNir/156JgAYUYvOLqNCcE+xcgPxJGanfZDXTLkfBYxaeaB8isBPeEU6fhPvu/W055M1uB7E0qhcbFtuKCBu1Fg4jzsW4yDU8+ZB1b5mAXwEAuMbVGMrOf4rjtTpGpQd6XFsXpFT28NU1u5j2cUbtANJalkNDX/UY6XJ jenkins@ci-master-02'
+- include: setup-Suse.yml
+  when: ansible_os_family == 'Suse'
 
-- name: Create sudoers.d directory.
-  file:
-    path: /etc/sudoers.d
-    owner: root
-    group: root
-    mode: 0755
-    state: directory
+- include: setup-Windows.yml
+  when: ansible_os_family == 'Windows'
 
-- name: Set includedir in /etc/sudoers.
-  lineinfile:
-    dest: /etc/sudoers
-    line: "#includedir /etc/sudoers.d"
-    state: present
-    validate: "/usr/sbin/visudo -cf %s"
+# Setup user accounts
+- include: users.yml
+  when: ansible_os_family != 'Windows'
 
-- 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'
This page took 0.023954 seconds and 4 git commands to generate.