mirror of
https://github.com/roles-ansible/ansible_role_packages.git
synced 2024-08-16 10:19:51 +02:00
13 lines
516 B
YAML
13 lines
516 B
YAML
---
|
|
- name: Print OS Infos
|
|
ansible.builtin.debug:
|
|
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 }}'
|
|
|
|
inventory_hostname = '{{ inventory_hostname }}'
|
|
ansible_hostname = '{{ ansible_hostname }}'
|
|
ansible_fqdn = '{{ ansible_fqdn }}'
|