Ensure headers are always installed on Debian systems. They stopped being included on a Macbook which resulted in Broadcom wl not being available, meaning WiFi was not working.

This commit is contained in:
2025-11-19 12:31:20 -07:00
parent f48fcaf610
commit c568e0efbb

View File

@@ -82,6 +82,15 @@
when: ansible_distribution == "Ubuntu"
ignore_errors: yes
- name: General | Software | Packages | Add Generic Kernel + Headers (Debian)
package:
name:
- linux-image-amd64
- linux-headers-amd64
state: present
when: ansible_distribution == "Debian"
ignore_errors: yes
- name: General | Software | Services | Install killall (Looking at you, Debian)
package:
name: psmisc