| 123456789101112131415161718192021222324252627282930 |
- ---
- - name: Show certain ansible_facts
- hosts: CentOS7-TEST
- gather_facts: yes
- become: true
- tasks:
- # - name: "distribution"
- # debug:
- # var: ansible_facts["distribution"]
- # tags: distro
- # - name: "distribution_version"
- # debug:
- # var: ansible_facts["distribution_version"]
- # tags: distrov
- - name: "distribution_major_version"
- debug:
- var: ansible_facts["distribution_major_version"]
- tags: distromajorv
- # - name: "distribution_release"
- # debug:
- # var: ansible_facts["distribution_release"]
- # tags: distrorelease
- - name: "os_family"
- debug:
- var: ansible_facts["os_family"]
- # tags: distrofamily
- # - name: "pkg_mgr"
- # debug:
- # var: ansible_facts["pkg_mgr"]
- # tags: distropkgmgr
|