File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments