summaryrefslogtreecommitdiffstats
path: root/roles/gnome/tasks
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-09-21 00:28:45 +0200
committerAhmed Abdelhalim <[email protected]>2025-09-21 00:53:16 +0200
commit4753d24c198d4f2448d32efff1f531dd0ee272d1 (patch)
tree4aeaba1596282d4eb4a5a6c7b0530191819fa0f2 /roles/gnome/tasks
parentb8501ec46154e147ed7e356bfca8250f7f2080d7 (diff)
Add gnome role w/testing on distros
Diffstat (limited to 'roles/gnome/tasks')
-rw-r--r--roles/gnome/tasks/main.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/gnome/tasks/main.yml b/roles/gnome/tasks/main.yml
new file mode 100644
index 00000000..1767c80c
--- /dev/null
+++ b/roles/gnome/tasks/main.yml
@@ -0,0 +1,9 @@
+---
+- name: "Include OS-specific variables"
+ ansible.builtin.include_vars: "{{ ansible_distribution | lower }}.yml"
+
+- name: "Install gnome packages"
+ become: true
+ ansible.builtin.package:
+ name: "{{ gnome_packages }}"
+ state: "present"