Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install server gui for alma #33

Merged
merged 4 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions tasks/AlmaLinux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
- name: Set up package managers for required tools
ansible.builtin.include_role:
name: ccdc.package_manager_configuration

- name: Install desktop environment
ansible.builtin.package:
name: "{{ package }}"
loop: "{{ desktop_packages }}"
loop_control:
loop_var: package
become: true

Check failure on line 13 in tasks/AlmaLinux.yml

View workflow job for this annotation

GitHub Actions / Linting

yaml[trailing-spaces]

Trailing spaces
- name: Run common Linux setup
ansible.builtin.include_tasks: Linux.yml
11 changes: 11 additions & 0 deletions vars/AlmaLinux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
gdm_config_file: /etc/gdm/custom.conf

Check failure on line 1 in vars/AlmaLinux.yml

View workflow job for this annotation

GitHub Actions / Linting

yaml[document-start]

Missing document start "---"

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"
Loading