Files
kcare/hello.yml
Gary Kwok ef6e10728d v1
2024-01-29 17:53:04 +08:00

8 lines
238 B
YAML

---
- name: This is a hello-world example
hosts: "{{ inputHosts }}"
tasks:
- name: Create a file called '/tmp/testfile.txt' with the content 'hello world'.
copy:
content: hello world
dest: /tmp/testfile.txt