15 lines
No EOL
516 B
YAML
15 lines
No EOL
516 B
YAML
---
|
|
- hosts: "{{ target_hosts }}"
|
|
become: true
|
|
tasks:
|
|
- 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 }}" |