12 lines
183 B
YAML
12 lines
183 B
YAML
- name: "Simple Test"
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
become: false
|
|
|
|
|
|
tasks:
|
|
- name: Say hello, Bob
|
|
ansible.builtin.debug:
|
|
msg: Hi.
|