2025-04-03 10:23:39 +00:00
|
|
|
---
|
2025-04-03 16:42:15 +00:00
|
|
|
- hosts: "{{ target_hosts }}"
|
2025-04-03 16:32:57 +00:00
|
|
|
become: true
|
2025-04-03 16:42:15 +00:00
|
|
|
tasks:
|
2025-04-03 16:55:48 +00:00
|
|
|
- name: Gather Linux Distribution Facts
|
|
|
|
|
ansible.builtin.setup:
|
|
|
|
|
filter: ansible_distribution*
|
|
|
|
|
|
|
|
|
|
- name: Display Linux Distribution Information
|
|
|
|
|
ansible.builtin.debug:
|
|
|
|
|
msg: "Linux Distribution: {{ ansible_distribution }} {{ ansible_distribution_version }} {{ ansible_distribution_release | default('') }}"
|
|
|
|
|
|
|
|
|
|
- name: Display Linux Kernel Version
|
|
|
|
|
ansible.builtin.debug:
|
|
|
|
|
msg: "Linux Kernel: {{ ansible_kernel }}"
|