13 lines
273 B
YAML
13 lines
273 B
YAML
|
---
|
||
|
- hosts:
|
||
|
- pikvm
|
||
|
gather_facts: true
|
||
|
become: false
|
||
|
tasks:
|
||
|
- name: System details
|
||
|
debug: "msg={{ item }}"
|
||
|
with_items:
|
||
|
- "{{ ansible_distribution }}"
|
||
|
- "{{ ansible_distribution_version }}"
|
||
|
- "{{ ansible_distribution_major_version }}"
|