callback_demo/callback_demo.yml
2023-11-30 22:23:53 -05:00

15 lines
292 B
YAML

- name: Callback plugin from collection demo
hosts: localhost
connection: local
become: false
gather_facts: false
tasks:
- name: Simply say hello
ansible.builtin.debug:
msg: Hello.
- name: Hello again.
ansible.builtin.debug:
msg: Hello. Again.