10 lines
145 B
YAML
10 lines
145 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
gather_facts: no
|
||
|
|
||
|
tasks:
|
||
|
- command: cat /etc/hosts
|
||
|
register: output
|
||
|
changed_when: '"ubu" in output.stdout'
|
||
|
|