1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_packages.git synced 2024-08-16 10:19:51 +02:00
ansible_role_packages/tasks/os_info.yml
L3D bc965e18e5
Starting rewrite...
Cleanup and refactor...
2023-07-26 23:17:15 +02:00

14 lines
533 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 }}'
verbosity: 1