ansible/oneoffs/os-version.yml

9 lines
239 B
YAML
Raw Normal View History

2023-06-04 19:55:10 -05:00
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
- hosts: all
gather_facts: yes
become: no
tasks:
- name: print os info
2025-01-17 02:42:01 -06:00
debug: msg="{{ inventory_hostname }} - {{ ansible_distribution }} {{ ansible_distribution_version }}"