11 lines
152 B
YAML
11 lines
152 B
YAML
---
|
|
- name: Install /tmp/hello.txt
|
|
hosts: all
|
|
|
|
tasks:
|
|
- name: Install hello file
|
|
copy:
|
|
src: files/hello.txt
|
|
dest: /tmp/hello.txt
|
|
|