Skip to content

Commit 789516d

Browse files
authoredJul 1, 2024
Merge pull request #33 from ccdc-opensource/install-server-gui-for-alma
Install server gui for alma
2 parents c855f70 + 6c48fef commit 789516d

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
 

‎tasks/AlmaLinux.yml

+15
Original file line numberDiff line numberDiff line change
@@ -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

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
gdm_config_file: /etc/gdm/custom.conf
3+
4+
desktop_packages:
5+
# EPEL is required for dkms on RedHat >=7
6+
- "epel-release"
7+
- "@Server with GUI"
8+
- "firefox"
9+
# This is required for the dconf module to disable screen locking
10+
- "python3-psutil"
11+
# DKMS will stop system updates from breaking VM guest extensions
12+
- "dkms"

0 commit comments

Comments
 (0)
Failed to load comments.