This repository has been archived on 2026-03-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kube_build/playbooks/os_family_discovery.yml
T
2023-12-11 14:14:11 -05:00

9 lines
226 B
YAML

---
- name: Discover OS Family of Hosts
hosts: all
gather_facts: yes
tasks:
- name: Display OS Family
ansible.builtin.debug:
msg: "The OS family for {{ inventory_hostname }} is {{ ansible_os_family }}"