12 lines
244 B
YAML
12 lines
244 B
YAML
- name: Ping
|
|
ansible.builtin.ping:
|
|
|
|
- name: Print an "Hello, World!"
|
|
ansible.builtin.debug:
|
|
msg: Hello, World!
|
|
|
|
- name: Test the `ansible_managed` variable
|
|
ansible.builtin.template:
|
|
dest: /tmp/ansible.txt
|
|
src: ansible.txt.j2
|