blob: 76b23e8bf2fde9205c5dd9864ae03f39abcbfe7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
---
- name: "Include OS-specific variables"
ansible.builtin.include_vars: "{{ ansible_facts['os_family'] | lower }}.yml"
- name: "Ensure linux-headers is installed"
become: true
ansible.builtin.package:
name: "{{ linux_headers_pkg }}"
state: "present"
|