10 lines
182 B
YAML
10 lines
182 B
YAML
- hosts: lab
|
|
gather_facts: no
|
|
vars:
|
|
- ping_output: pong
|
|
tasks:
|
|
- name: Test if Ansible works on host
|
|
ping:
|
|
data: "{{ ping_output }}"
|
|
|
|
# vim: set ft=yaml sw=2 et:
|