diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-20 01:16:05 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-20 01:16:05 +0200 |
| commit | c5da61bd318e67099c0d3edc01a4ef25dff081c7 (patch) | |
| tree | 1eb00ce7c7f61487736b3b0e952d49a24085f932 /roles/grafana/tasks | |
| parent | 335f37eb177d2c9a871533ac80a611e0eea057a3 (diff) | |
Fix include vars using os_family (not distribution)
Diffstat (limited to 'roles/grafana/tasks')
| -rw-r--r-- | roles/grafana/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/grafana/tasks/main.yml b/roles/grafana/tasks/main.yml index 26d86435..f75021ff 100644 --- a/roles/grafana/tasks/main.yml +++ b/roles/grafana/tasks/main.yml @@ -1,9 +1,9 @@ --- - name: "Include OS-specific variables" - ansible.builtin.include_vars: "{{ ansible_distribution | lower }}.yml" + ansible.builtin.include_vars: "{{ ansible_os_family | lower }}.yml" - name: "Include OS-specific installation tasks" - ansible.builtin.include_tasks: "install-{{ ansible_distribution | lower }}.yml" + ansible.builtin.include_tasks: "install-{{ ansible_os_family | lower }}.yml" - name: "Create grafana group" become: true |
