10 lines
182 B
YAML
10 lines
182 B
YAML
|
- name: My first play
|
||
|
hosts: ansibletest
|
||
|
tasks:
|
||
|
- name: Ping my hosts
|
||
|
ansible.builtin.ping:
|
||
|
- name: Print message
|
||
|
ansible.builtin.debug:
|
||
|
msg: Hello world
|
||
|
|