blob: 54bdb2881de67effc2855873a06c5cb4cf786143 (
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: "{{ linux_headers_state }}"
|