From a2d717036f1827611fc2c921ce6be9c163b12c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Thu, 20 Aug 2026 19:18:49 +0000 Subject: [PATCH] new file: nodes/ansible/os-get-info.playbook.yaml --- nodes/ansible/os-get-info.playbook.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nodes/ansible/os-get-info.playbook.yaml diff --git a/nodes/ansible/os-get-info.playbook.yaml b/nodes/ansible/os-get-info.playbook.yaml new file mode 100644 index 0000000..604897d --- /dev/null +++ b/nodes/ansible/os-get-info.playbook.yaml @@ -0,0 +1,12 @@ +- name: OS update playbook + hosts: + - all + become: true + tasks: + + - debug: + msg: + - "Distribution: {{ hostvars[inventory_hostname].ansible_distribution }}" + - "Major version: {{ hostvars[inventory_hostname].ansible_distribution_major_version }}" + - "Version: {{ hostvars[inventory_hostname].ansible_distribution_version }}" + - "kernel: {{ hostvars[inventory_hostname].ansible_kernel }}" \ No newline at end of file