blob: d5f4ae86b4447c305f9a77d82d003948e788fe08 (
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 unnamed-task
- name: Another task
ansible.builtin.debug:
msg: debug message
|