2019-07-16 16:53:03 +02:00
|
|
|
---
|
2021-01-18 10:47:52 +01:00
|
|
|
- name: Print OS Infos
|
2021-03-12 22:18:54 +01:00
|
|
|
ansible.builtin.debug:
|
2021-01-18 10:47:52 +01:00
|
|
|
msg: |
|
|
|
|
ansible_os_family = '{{ ansible_os_family }}'
|
|
|
|
ansible_distribution = '{{ ansible_distribution }}'
|
|
|
|
ansible_distribution_version = '{{ ansible_distribution_version }}'
|
|
|
|
ansible_distribution_release = '{{ ansible_distribution_release }}'
|
|
|
|
ansible_machine = '{{ ansible_machine }}'
|
2020-08-10 10:42:47 +02:00
|
|
|
|
2021-01-18 10:47:52 +01:00
|
|
|
inventory_hostname = '{{ inventory_hostname }}'
|
|
|
|
ansible_hostname = '{{ ansible_hostname }}'
|
|
|
|
ansible_fqdn = '{{ ansible_fqdn }}'
|