We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c855f70 + 6c48fef commit 789516dCopy full SHA for 789516d
tasks/AlmaLinux.yml
@@ -0,0 +1,15 @@
1
+---
2
+- name: Set up package managers for required tools
3
+ ansible.builtin.include_role:
4
+ name: ccdc.package_manager_configuration
5
+
6
+- name: Install desktop environment
7
+ ansible.builtin.package:
8
+ name: "{{ package }}"
9
+ loop: "{{ desktop_packages }}"
10
+ loop_control:
11
+ loop_var: package
12
+ become: true
13
14
+- name: Run common Linux setup
15
+ ansible.builtin.include_tasks: Linux.yml
vars/AlmaLinux.yml
@@ -0,0 +1,12 @@
+gdm_config_file: /etc/gdm/custom.conf
+desktop_packages:
+ # EPEL is required for dkms on RedHat >=7
+ - "epel-release"
+ - "@Server with GUI"
+ - "firefox"
+ # This is required for the dconf module to disable screen locking
+ - "python3-psutil"
+ # DKMS will stop system updates from breaking VM guest extensions
+ - "dkms"
0 commit comments