8 lines
156 B
YAML
8 lines
156 B
YAML
|
- hosts: lab
|
||
|
gather_facts: false
|
||
|
vars:
|
||
|
- filepath: /tmp/myFile.txt
|
||
|
tasks:
|
||
|
- include_tasks: tasks/file_present.yml
|
||
|
# vim: set ft=yaml sw=2 et:
|