blob: fd4dd918e0b57e4b84a76552fa6e4df843f12e93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
- name: Fixture
hosts: localhost
connection: local
gather_facts: false
tasks:
- ansible.builtin.command:
cmd: echo "no name" # should generate name[missing]
- name: Another task
ansible.builtin.debug:
msg: debug message
|