21 lines
526 B
YAML
21 lines
526 B
YAML
---
|
|
- name: Facts
|
|
hosts: linuxservers
|
|
|
|
tasks:
|
|
- name: Debug Facts
|
|
ansible.builtin.debug:
|
|
msg: "{{ ansible_facts }}"
|
|
|
|
- name: Debug Facts Hostname - Unsafe Text
|
|
ansible.builtin.debug:
|
|
msg: "{{ ansible_facts['nodename'] }}"
|
|
|
|
- name: Debug Facts ipv4 - List
|
|
ansible.builtin.debug:
|
|
msg: "{{ ansible_facts['all_ipv4_addresses'][0] }}"
|
|
|
|
- name: Debug Facts SeLinux Status - Dictionary
|
|
ansible.builtin.debug:
|
|
msg: "{{ ansible_facts['selinux']['status'] }}"
|