This commit is contained in:
Gary Kwok
2024-01-29 17:53:04 +08:00
commit ef6e10728d
24 changed files with 409 additions and 0 deletions

8
hello.yml Normal file
View File

@@ -0,0 +1,8 @@
---
- 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