11 lines
295 B
YAML
11 lines
295 B
YAML
---
|
|
- name: printo a video una serie di variabili
|
|
hosts: localhost
|
|
vars:
|
|
user: lepida
|
|
|
|
tasks:
|
|
- name: printo a video una combinazione estratta dai fatti e da altre variabili
|
|
ansible.builtin.debug:
|
|
msg: "L'host ha come OS: {{ansible_facts.distribution}} ed e' di {{user}}"
|
|
|