diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-01-24 20:28:03 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-01-24 20:28:03 +0100 |
| commit | 953c4771802533397a0292c20c2dc5d8b0fbad38 (patch) | |
| tree | 41945b8ba8e7dd916a25123bf240d4ae3dc96599 /roles/linux_headers/tasks | |
| parent | 1ffba69f1ae6bc868ebdfade4c433eaf970ba32f (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.yml | 6 |
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" |
