summaryrefslogtreecommitdiffstats
path: root/roles/linux_headers/tasks
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-01-24 20:28:03 +0100
committerAhmed Abdelhalim <[email protected]>2026-01-24 20:28:03 +0100
commite1acbb9225197f3910fb3a84009773564c47297f (patch)
tree41945b8ba8e7dd916a25123bf240d4ae3dc96599 /roles/linux_headers/tasks
parent2750789cd67985d049d40ce2fbd89864e95d50d3 (diff)
Fix nvidia role to setup the correct driver to GTX1060
Diffstat (limited to 'roles/linux_headers/tasks')
-rw-r--r--roles/linux_headers/tasks/main.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/linux_headers/tasks/main.yml b/roles/linux_headers/tasks/main.yml
new file mode 100644
index 00000000..454e4af8
--- /dev/null
+++ b/roles/linux_headers/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure linux-headers is installed"
+ become: true
+ ansible.builtin.package:
+ name: "linux-headers"
+ state: "present"