15 lines
312 B
YAML
15 lines
312 B
YAML
---
|
|
- name: test play
|
|
hosts: "{{ target | default([]) }}"
|
|
tasks:
|
|
- name: say hello to the world
|
|
ansible.builtin.debug:
|
|
msg: hello world!
|
|
|
|
- name: check connection using ping
|
|
ansible.builtin.ping:
|
|
|
|
- name: check become using ping
|
|
become: true
|
|
ansible.builtin.ping:
|