summaryrefslogtreecommitdiffstats
path: root/roles/prometheus
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-09-20 01:16:05 +0200
committerAhmed Abdelhalim <[email protected]>2025-09-20 01:16:05 +0200
commitc5da61bd318e67099c0d3edc01a4ef25dff081c7 (patch)
tree1eb00ce7c7f61487736b3b0e952d49a24085f932 /roles/prometheus
parent335f37eb177d2c9a871533ac80a611e0eea057a3 (diff)
Fix include vars using os_family (not distribution)
Diffstat (limited to 'roles/prometheus')
-rw-r--r--roles/prometheus/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/prometheus/tasks/main.yml b/roles/prometheus/tasks/main.yml
index 236b0111..f4b345e9 100644
--- a/roles/prometheus/tasks/main.yml
+++ b/roles/prometheus/tasks/main.yml
@@ -1,6 +1,6 @@
---
- name: "Include OS-specific variables"
- ansible.builtin.include_vars: "{{ ansible_distribution | lower }}.yml"
+ ansible.builtin.include_vars: "{{ ansible_os_family | lower }}.yml"
- name: "Create prometheus group"
become: true