blob: 965a80ab46e055b990a7e30a7784d8077e6eff19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: Play for testing name[missing] rule
hosts: all
tasks:
- name: This task has a name
ansible.builtin.command: echo "Hello World" # noqa: no-free-form
changed_when: false
- name: Debug task with name
ansible.builtin.debug: msg="Hello World" # noqa: no-free-form
- name: Flush handler with name
ansible.builtin.meta: flush_handlers
changed_when: false
|